[llvm] r274481 - Reformat blank lines.

NAKAMURA Takumi via llvm-commits llvm-commits at lists.llvm.org
Sun Jul 3 18:26:34 PDT 2016


Author: chapuni
Date: Sun Jul  3 20:26:33 2016
New Revision: 274481

URL: http://llvm.org/viewvc/llvm-project?rev=274481&view=rev
Log:
Reformat blank lines.

Modified:
    llvm/trunk/lib/Analysis/LazyValueInfo.cpp
    llvm/trunk/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp

Modified: llvm/trunk/lib/Analysis/LazyValueInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/LazyValueInfo.cpp?rev=274481&r1=274480&r2=274481&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/LazyValueInfo.cpp (original)
+++ llvm/trunk/lib/Analysis/LazyValueInfo.cpp Sun Jul  3 20:26:33 2016
@@ -116,7 +116,7 @@ public:
     Res.markOverdefined();
     return Res;
   }
-  
+
   bool isUndefined() const     { return Tag == undefined; }
   bool isConstant() const      { return Tag == constant; }
   bool isNotConstant() const   { return Tag == notconstant; }
@@ -494,7 +494,7 @@ namespace {
 
       return lookup(V)[BB];
     }
-    
+
   public:
     /// This is the query interface to determine the lattice
     /// value for the specified Value* at the end of the specified block.
@@ -933,7 +933,7 @@ bool LazyValueInfoCache::solveBlockValue
         return true;
       };
     }
-    
+
     // TODO: ABS, NABS from the SelectPatternResult
   }
 
@@ -993,7 +993,7 @@ bool LazyValueInfoCache::solveBlockValue
       };
     }
   }
-  
+
   LVILatticeVal Result;  // Start Undefined.
   Result.mergeIn(TrueVal, DL);
   Result.mergeIn(FalseVal, DL);
@@ -1028,7 +1028,6 @@ bool LazyValueInfoCache::solveBlockValue
     return true;
   }
 
-  
   // Figure out the range of the LHS.  If that fails, we still apply the
   // transfer rule on the full set since we may be able to locally infer
   // interesting facts.
@@ -1105,7 +1104,7 @@ bool LazyValueInfoCache::solveBlockValue
     BBLV.markOverdefined();
     return true;
   };
-  
+
   // Figure out the range of the LHS.  If that fails, use a conservative range,
   // but apply the transfer rule anyways.  This lets us pick up facts from
   // expressions like "and i32 (call i32 @foo()), 32"
@@ -1204,7 +1203,7 @@ bool getValueFromFromCondition(Value *Va
       return true;
     }
   }
-  
+
   return false;
 }
 
@@ -1282,7 +1281,7 @@ bool LazyValueInfoCache::getEdgeValue(Va
     // If we couldn't constrain the value on the edge, LocalResult doesn't
     // provide any information.
     LocalResult.markOverdefined();
-  
+
   if (hasSingleValue(LocalResult)) {
     // Can't get any more precise here
     Result = LocalResult;
@@ -1664,7 +1663,7 @@ LazyValueInfo::getPredicateAt(unsigned P
           // Note that PredBB may be BB itself.
           Tristate Result = getPredicateOnEdge(Pred, Incoming, C, PredBB, BB,
                                                CxtI);
-          
+
           // Keep going as long as we've seen a consistent known result for
           // all inputs.
           Baseline = (i == 0) ? Result /* First iteration */

Modified: llvm/trunk/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp?rev=274481&r1=274480&r2=274481&view=diff
==============================================================================
--- llvm/trunk/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp (original)
+++ llvm/trunk/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp Sun Jul  3 20:26:33 2016
@@ -368,7 +368,7 @@ static bool isRequiredForExecution(const
         (COFF::IMAGE_SCN_MEM_DISCARDABLE | COFF::IMAGE_SCN_LNK_INFO);
     return HasContent && !IsDiscardable;
   }
-  
+
   assert(isa<MachOObjectFile>(Obj));
   return true;
 }
@@ -595,7 +595,7 @@ Error RuntimeDyldImpl::emitCommonSymbols
     uint64_t Size = Sym.getCommonSize();
 
     CommonSize = alignTo(CommonSize, Align) + Size;
-    
+
     SymbolsToAllocate.push_back(Sym);
   }
 




More information about the llvm-commits mailing list