comparison dmd/dsymbol.h @ 1364:46f6365a50d7

Added IrTypeFunction and IrTypeDelegate and eliminated IrDType. This means the Type::ir field can be removed. It's the final part needed for the move to a slightly more sane type system. Now the whole thing just needs to be cleaned up :P Added -v-cg switch, which right now just prints "codegen: module.name (module/name.d)" to stdout, this can really help figuring out where, in some complex build command, things go wrong.
author Tomas Lindquist Olsen <tomas.l.olsen gmail com>
date Sat, 16 May 2009 18:19:52 +0200
parents dbe4af57b240
children 229e02867307
comparison
equal deleted inserted replaced
1363:b7c8506e1eed 1364:46f6365a50d7
80 typedef union tree_node TYPE; 80 typedef union tree_node TYPE;
81 #else 81 #else
82 struct TYPE; 82 struct TYPE;
83 #endif 83 #endif
84 84
85 // llvm
86 #if IN_LLVM 85 #if IN_LLVM
87 struct Ir; 86 class Ir;
88 struct IrSymbol; 87 class IrSymbol;
89 namespace llvm 88 namespace llvm
90 { 89 {
91 class Value; 90 class Value;
92 } 91 }
93 #endif 92 #endif