Fix misaligned whitespace. No functionality change.
authorNick Lewycky <nicholas@mxc.ca>
Sun, 8 Mar 2009 00:57:09 +0000 (00:57 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Sun, 8 Mar 2009 00:57:09 +0000 (00:57 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66355 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Analysis/ValueTracking.h

index 8c27b237581a03f44c5a7536630e49b71715497d..5f5f77a5c9fe7407eb09b6af9589888e902accac 100644 (file)
@@ -62,14 +62,14 @@ namespace llvm {
   /// 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);
   }