aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChuck Rose III <cfr@adobe.com>2007-09-05 20:36:41 +0000
committerChuck Rose III <cfr@adobe.com>2007-09-05 20:36:41 +0000
commitc331d305a0961c36a73ddeed8f66306d320b37d0 (patch)
tree1fcc4840796e25248b75eab3b4a5ea1a36ccfa69
parentc2ec2baf3d4de95695e695ee404efc251efba6d4 (diff)
Forgot to obey 80 column rule. Fixing that.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41725 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Transforms/Scalar/InstructionCombining.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp
index 4c07eb0013..9db10340a1 100644
--- a/lib/Transforms/Scalar/InstructionCombining.cpp
+++ b/lib/Transforms/Scalar/InstructionCombining.cpp
@@ -7058,7 +7058,8 @@ Instruction *InstCombiner::visitBitCast(BitCastInst &CI) {
// If we found a path from the src to dest, create the getelementptr now.
if (SrcElTy == DstElTy) {
SmallVector<Value*, 8> Idxs(NumZeros+1, ZeroUInt);
- return new GetElementPtrInst(Src, Idxs.begin(), Idxs.end(), "", ((Instruction*) NULL));
+ return new GetElementPtrInst(Src, Idxs.begin(), Idxs.end(), "",
+ ((Instruction*) NULL));
}
}