[llvm-commits] [llvm] r41725 - /llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp

Chuck Rose III cfr at adobe.com
Wed Sep 5 13:36:41 PDT 2007


Author: cfr
Date: Wed Sep  5 15:36:41 2007
New Revision: 41725

URL: http://llvm.org/viewvc/llvm-project?rev=41725&view=rev
Log:
Forgot to obey 80 column rule.  Fixing that.

Modified:
    llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp

Modified: llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp?rev=41725&r1=41724&r2=41725&view=diff

==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp Wed Sep  5 15:36:41 2007
@@ -7058,7 +7058,8 @@
     // 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));
     }
   }
 





More information about the llvm-commits mailing list