[llvm-commits] [llvm] r66355 - /llvm/trunk/include/llvm/Analysis/ValueTracking.h

Nick Lewycky nicholas at mxc.ca
Sat Mar 7 16:57:09 PST 2009


Author: nicholas
Date: Sat Mar  7 18:57:09 2009
New Revision: 66355

URL: http://llvm.org/viewvc/llvm-project?rev=66355&view=rev
Log:
Fix misaligned whitespace. No functionality change.

Modified:
    llvm/trunk/include/llvm/Analysis/ValueTracking.h

Modified: llvm/trunk/include/llvm/Analysis/ValueTracking.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/ValueTracking.h?rev=66355&r1=66354&r2=66355&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Analysis/ValueTracking.h (original)
+++ llvm/trunk/include/llvm/Analysis/ValueTracking.h Sat Mar  7 18:57:09 2009
@@ -62,14 +62,14 @@
   /// If InsertBefore is not null, this function will duplicate (modified)
   /// insertvalues when a part of a nested struct is extracted.
   Value *FindInsertedValue(Value *V,
-                         const unsigned *idx_begin,
-                         const unsigned *idx_end,
-                         Instruction *InsertBefore = 0);
+                           const unsigned *idx_begin,
+                           const unsigned *idx_end,
+                           Instruction *InsertBefore = 0);
 
   /// This is a convenience wrapper for finding values indexed by a single index
   /// only.
   inline Value *FindInsertedValue(Value *V, const unsigned Idx,
-                                 Instruction *InsertBefore = 0) {
+                                  Instruction *InsertBefore = 0) {
     const unsigned Idxs[1] = { Idx };
     return FindInsertedValue(V, &Idxs[0], &Idxs[1], InsertBefore);
   }





More information about the llvm-commits mailing list