Forgot to obey 80 column rule. Fixing that.
authorChuck Rose III <cfr@adobe.com>
Wed, 5 Sep 2007 20:36:41 +0000 (20:36 +0000)
committerChuck Rose III <cfr@adobe.com>
Wed, 5 Sep 2007 20:36:41 +0000 (20:36 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41725 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/InstructionCombining.cpp

index 4c07eb00132bac95eeeb25473f49d45f897a7cf8..9db10340a1298a4f836bf7b8cf49b78972a1cf06 100644 (file)
@@ -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));
     }
   }