[llvm-commits] [llvm] r86316 - /llvm/trunk/lib/VMCore/Instructions.cpp
Victor Hernandez
vhernandez at apple.com
Fri Nov 6 16:36:51 PST 2009
Author: hernande
Date: Fri Nov 6 18:36:50 2009
New Revision: 86316
URL: http://llvm.org/viewvc/llvm-project?rev=86316&view=rev
Log:
Fit in 80 columns
Modified:
llvm/trunk/lib/VMCore/Instructions.cpp
Modified: llvm/trunk/lib/VMCore/Instructions.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/VMCore/Instructions.cpp?rev=86316&r1=86315&r2=86316&view=diff
==============================================================================
--- llvm/trunk/lib/VMCore/Instructions.cpp (original)
+++ llvm/trunk/lib/VMCore/Instructions.cpp Fri Nov 6 18:36:50 2009
@@ -465,9 +465,11 @@
ArraySize = ConstantInt::get(IntPtrTy, 1);
else if (ArraySize->getType() != IntPtrTy) {
if (InsertBefore)
- ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false, "", InsertBefore);
+ ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false,
+ "", InsertBefore);
else
- ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false, "", InsertAtEnd);
+ ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false,
+ "", InsertAtEnd);
}
if (!IsConstantOne(ArraySize)) {
More information about the llvm-commits
mailing list