comparison gen/irstate.h @ 213:7816aafeea3c trunk

[svn r229] Updated the object.d implementation to the latest Tango. Fixed a bunch of the built-in typeinfos for arrays, they did not inherit TypeInfo_Array. Applied patch to tango/text/convert/Layout.d by fvbommel, closes #47 . Cleaned up some type code. Replaced uses of llvm::Type with LLType (a typedef), same for Value and Constant. Fixed a few cases where typeinfo for user structs could be emitted multiple times, seems to still be some cases of this :/
author lindquist
date Fri, 30 May 2008 19:32:04 +0200
parents 9d44ec83acd1
children 092468448d25
comparison
equal deleted inserted replaced
212:4c2689d57ba4 213:7816aafeea3c
138 // static ctors/dtors/unittests 138 // static ctors/dtors/unittests
139 typedef std::vector<FuncDeclaration*> FuncDeclVector; 139 typedef std::vector<FuncDeclaration*> FuncDeclVector;
140 FuncDeclVector ctors; 140 FuncDeclVector ctors;
141 FuncDeclVector dtors; 141 FuncDeclVector dtors;
142 FuncDeclVector unitTests; 142 FuncDeclVector unitTests;
143
144 // intrinsics
145 llvm::Function* llvm_DeclareMemSet32;
146 llvm::Function* llvm_DeclareMemSet64;
147 llvm::Function* llvm_DeclareMemCpy32;
148 llvm::Function* llvm_DeclareMemCpy64;
149 llvm::Function* llvm_DeclareMemBarrier;
150 }; 143 };
151 144
152 #endif // LLVMDC_GEN_IRSTATE_H 145 #endif // LLVMDC_GEN_IRSTATE_H