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 | bcdc0f0aff015b6507560f50c71d1b7b6c6a9932 (patch) | |
tree | d0fbef91f01611adff385807be4f1e88d081a86e /lib/CodeGen/CodeGenFunction.cpp | |
parent | b0802c9f5003df5ad9582fe32af6463af292f4b0 (diff) |
Fix 80-col violation.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@82782 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.cpp')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenFunction.cpp b/lib/CodeGen/CodeGenFunction.cpp index f21984eaa4..83181a497d 100644 --- a/lib/CodeGen/CodeGenFunction.cpp +++ b/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"); |