comparison gen/llvmhelpers.h @ 419:023fa78c1203

Fixed delegate casts.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Mon, 28 Jul 2008 08:05:21 +0200
parents ac1fcc138e42
children fa91b03d9cd7
comparison
equal deleted inserted replaced
418:94c4e090c1af 419:023fa78c1203
46 46
47 // casts 47 // casts
48 DValue* DtoCastInt(Loc& loc, DValue* val, Type* to); 48 DValue* DtoCastInt(Loc& loc, DValue* val, Type* to);
49 DValue* DtoCastPtr(Loc& loc, DValue* val, Type* to); 49 DValue* DtoCastPtr(Loc& loc, DValue* val, Type* to);
50 DValue* DtoCastFloat(Loc& loc, DValue* val, Type* to); 50 DValue* DtoCastFloat(Loc& loc, DValue* val, Type* to);
51 DValue* DtoCastDelegate(Loc& loc, DValue* val, Type* to);
51 DValue* DtoCast(Loc& loc, DValue* val, Type* to); 52 DValue* DtoCast(Loc& loc, DValue* val, Type* to);
52 53
53 // is template instance check 54 // is template instance check
54 bool DtoIsTemplateInstance(Dsymbol* s); 55 bool DtoIsTemplateInstance(Dsymbol* s);
55 56