diff options
author | Mike Stump <mrs@apple.com> | 2009-09-25 18:11:00 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-09-25 18:11:00 +0000 |
commit | 1dbb8f78a3d76a163f2311f4d6546e23bc934cac (patch) | |
tree | 7b6ad67bcda78fbe6d37d47631d24207a9cd080b /clang/lib/CodeGen/CodeGenFunction.cpp | |
parent | a318d91a1e29a87dd8687d7e07549fb3e4405b89 (diff) | |
download | bcm5719-llvm-1dbb8f78a3d76a163f2311f4d6546e23bc934cac.tar.gz bcm5719-llvm-1dbb8f78a3d76a163f2311f4d6546e23bc934cac.zip |
Fix 80-col violation.
llvm-svn: 82782
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.cpp b/clang/lib/CodeGen/CodeGenFunction.cpp index f21984eaa4e..83181a497db 100644 --- a/clang/lib/CodeGen/CodeGenFunction.cpp +++ b/clang/lib/CodeGen/CodeGenFunction.cpp @@ -159,7 +159,8 @@ void CodeGenFunction::StartFunction(GlobalDecl GD, QualType RetTy, // later. Don't create this with the builder, because we don't want it // folded. llvm::Value *Undef = llvm::UndefValue::get(llvm::Type::getInt32Ty(VMContext)); - AllocaInsertPt = new llvm::BitCastInst(Undef, llvm::Type::getInt32Ty(VMContext), "", + AllocaInsertPt = new llvm::BitCastInst(Undef, + llvm::Type::getInt32Ty(VMContext), "", EntryBB); if (Builder.isNamePreserving()) AllocaInsertPt->setName("allocapt"); |