A couple of ldc2 tweaks now druntime compiles.

This commit is contained in:
Robert Clipsham 2009-07-09 12:36:08 +01:00
parent b73e45940a
commit 4fbcd9b9c4
2 changed files with 3 additions and 5 deletions

View file

@ -336,11 +336,7 @@ static void LLVM_D_BuildRuntimeModule()
// Object _d_allocclass(ClassInfo ci)
{
#if DMDV2
std::string fname("_d_newclass");
#else
std::string fname("_d_allocclass");
#endif
std::vector<const LLType*> types;
types.push_back(classInfoTy);
const llvm::FunctionType* fty = llvm::FunctionType::get(voidPtrTy, types, false);