view dmd/expression/Neg.d @ 191:52188e7e3fb5

Fixed deprecated features, now compiles with DMD2.058 Also changed Array allocation policy: Now doesn't reallocate but malloc's, followed by a memcpy (no free). (this fixes a crash while compiling druntime. Same bug in dmd)
author korDen@korDen-pc
date Sun, 25 Mar 2012 03:11:12 +0400
parents e28b18c23469
children
line wrap: on
line source

module dmd.expression.Neg;

import dmd.common;
import dmd.Type;
import dmd.Loc;
import dmd.RealExp;
import dmd.Expression;
import dmd.ComplexExp;
import dmd.IntegerExp;
import dmd.Complex;

Expression Neg(Type type, Expression e1)
{   
	Expression e;
    Loc loc = e1.loc;

    if (e1.type.isreal())
    {
		e = new RealExp(loc, -e1.toReal(), type);
    }
    else if (e1.type.isimaginary())
    {
		e = new RealExp(loc, -e1.toImaginary(), type);
    }
    else if (e1.type.iscomplex())
    {
		Complex!(real) c = e1.toComplex();
		e = new ComplexExp(loc, Complex!(real)(-c.re, -c.im), type);
    }
    else
		e = new IntegerExp(loc, -e1.toInteger(), type);

    return e;
}