summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Transforms/Scalar/InstructionCombining.cpp
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
commit2320323647fbeee8748ea44f3e2fbec93fb5a62e (patch)
treedb65bbef47840a891c87da8855edba71a1f73ffc /llvm/lib/Transforms/Scalar/InstructionCombining.cpp
parent813dd67a34235fb9fa0bbfcb6143ca47365b45d4 (diff)
downloadbcm5719-llvm-2320323647fbeee8748ea44f3e2fbec93fb5a62e.tar.gz
bcm5719-llvm-2320323647fbeee8748ea44f3e2fbec93fb5a62e.zip
Forgot to obey 80 column rule. Fixing that.
llvm-svn: 41725
Diffstat (limited to 'llvm/lib/Transforms/Scalar/InstructionCombining.cpp')
-rw-r--r--llvm/lib/Transforms/Scalar/InstructionCombining.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp b/llvm/lib/Transforms/Scalar/InstructionCombining.cpp
index 4c07eb00132..9db10340a12 100644
--- a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp
+++ b/llvm/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));
}
}
OpenPOWER on IntegriCloud