[cfe-commits] r82782 - /cfe/trunk/lib/CodeGen/CodeGenFunction.cpp
Mike Stump
mrs at apple.com
Fri Sep 25 11:11:00 PDT 2009
Author: mrs
Date: Fri Sep 25 13:11:00 2009
New Revision: 82782
URL: http://llvm.org/viewvc/llvm-project?rev=82782&view=rev
Log:
Fix 80-col violation.
Modified:
cfe/trunk/lib/CodeGen/CodeGenFunction.cpp
Modified: cfe/trunk/lib/CodeGen/CodeGenFunction.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CodeGenFunction.cpp?rev=82782&r1=82781&r2=82782&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CodeGenFunction.cpp (original)
+++ cfe/trunk/lib/CodeGen/CodeGenFunction.cpp Fri Sep 25 13:11:00 2009
@@ -159,7 +159,8 @@
// 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");
More information about the cfe-commits
mailing list