Fix compilation of ldc1

This commit is contained in:
Alexey Prokhin
2011-01-04 20:59:39 +03:00
parent ceeff57700
commit d1ff4e9fd3
4 changed files with 19 additions and 3 deletions

View File

@@ -541,9 +541,10 @@ struct CaseStatement : Statement
CaseStatement* isCaseStatement() { return this; }
// LDC
#if IN_LLVM
llvm::BasicBlock* bodyBB;
llvm::ConstantInt* llvmIdx;
llvm::Value* llvmIdx;
#endif
};
#if DMDV2