diff options
author | Owen Anderson <resistor@mac.com> | 2009-07-24 23:12:58 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2009-07-24 23:12:58 +0000 |
commit | b7a2fe6f8107bb69c1c1754bcb88e403dd8efc40 (patch) | |
tree | 77fc0827bc3329b64b0f0c15316329b352e3772c /clang/lib/CodeGen/CodeGenModule.cpp | |
parent | edb4a703255623eef2c56e644f9fdc04cadd7336 (diff) | |
download | bcm5719-llvm-b7a2fe6f8107bb69c1c1754bcb88e403dd8efc40.tar.gz bcm5719-llvm-b7a2fe6f8107bb69c1c1754bcb88e403dd8efc40.zip |
Update for LLVM API change.
llvm-svn: 77012
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp index 803df31a6f6..756cca7384b 100644 --- a/clang/lib/CodeGen/CodeGenModule.cpp +++ b/clang/lib/CodeGen/CodeGenModule.cpp @@ -211,7 +211,7 @@ void CodeGenModule::EmitCtorList(const CtorList &Fns, const char *GlobalName) { for (CtorList::const_iterator I = Fns.begin(), E = Fns.end(); I != E; ++I) { std::vector<llvm::Constant*> S; S.push_back( - VMContext.getConstantInt(llvm::Type::Int32Ty, I->second, false)); + llvm::ConstantInt::get(llvm::Type::Int32Ty, I->second, false)); S.push_back(VMContext.getConstantExprBitCast(I->first, CtorPFTy)); Ctors.push_back(VMContext.getConstantStruct(CtorStructTy, S)); } @@ -505,7 +505,7 @@ llvm::Constant *CodeGenModule::EmitAnnotateAttr(llvm::GlobalValue *GV, VMContext.getConstantExprBitCast(GV, SBP), VMContext.getConstantExprBitCast(annoGV, SBP), VMContext.getConstantExprBitCast(unitGV, SBP), - VMContext.getConstantInt(llvm::Type::Int32Ty, LineNo) + llvm::ConstantInt::get(llvm::Type::Int32Ty, LineNo) }; return VMContext.getConstantStruct(Fields, 4, false); } @@ -1294,8 +1294,8 @@ CodeGenModule::GetAddrOfConstantCFString(const StringLiteral *Literal) { NextField = *Field++; const llvm::Type *Ty = getTypes().ConvertType(getContext().UnsignedIntTy); appendFieldAndPadding(*this, Fields, CurField, NextField, - isUTF16 ? VMContext.getConstantInt(Ty, 0x07d0) - : VMContext.getConstantInt(Ty, 0x07C8), + isUTF16 ? llvm::ConstantInt::get(Ty, 0x07d0) + : llvm::ConstantInt::get(Ty, 0x07C8), CFRD, STy); // String pointer. @@ -1339,7 +1339,7 @@ CodeGenModule::GetAddrOfConstantCFString(const StringLiteral *Literal) { NextField = 0; Ty = getTypes().ConvertType(getContext().LongTy); appendFieldAndPadding(*this, Fields, CurField, NextField, - VMContext.getConstantInt(Ty, StringLength), CFRD, STy); + llvm::ConstantInt::get(Ty, StringLength), CFRD, STy); // The struct. C = VMContext.getConstantStruct(STy, Fields); |