temporarily revert devang's patch to link in the llvm codegen etc.

llvm-svn: 43544
This commit is contained in:
Chris Lattner
2007-10-31 04:53:03 +00:00
parent 37e011ce43
commit 5087e267c2
9 changed files with 16 additions and 57 deletions

View File

@@ -24,10 +24,8 @@ using namespace clang;
using namespace CodeGen;
CodeGenModule::CodeGenModule(ASTContext &C, llvm::Module &M,
const llvm::TargetData &TD)
: Context(C), TheModule(M), TheTargetData(TD),
Types(C, M, TD), CFConstantStringClassRef(0) {}
CodeGenModule::CodeGenModule(ASTContext &C, llvm::Module &M)
: Context(C), TheModule(M), Types(C, M), CFConstantStringClassRef(0) {}
llvm::Constant *CodeGenModule::GetAddrOfGlobalDecl(const ValueDecl *D) {
// See if it is already in the map.