comparison dmd/UshrExp.d @ 178:e3afd1303184

Many small bugs fixed Made all classes derive from TObject to detect memory leaks (functionality is disabled for now) Began work on overriding backend memory allocations (to avoid memory leaks)
author korDen
date Sun, 17 Oct 2010 07:42:00 +0400
parents af1bebfd96a4
children b0d41ff5e0df
comparison
equal deleted inserted replaced
177:1475fd394c9e 178:e3afd1303184
23 23
24 class UshrExp : BinExp 24 class UshrExp : BinExp
25 { 25 {
26 this(Loc loc, Expression e1, Expression e2) 26 this(Loc loc, Expression e1, Expression e2)
27 { 27 {
28 register();
28 super(loc, TOK.TOKushr, UshrExp.sizeof, e1, e2); 29 super(loc, TOK.TOKushr, UshrExp.sizeof, e1, e2);
29 } 30 }
30 31
31 override Expression semantic(Scope sc) 32 override Expression semantic(Scope sc)
32 { 33 {