Clean up whitespace
authorDuncan P. N. Exon Smith <dexonsmith@apple.com>
Fri, 31 Jan 2014 21:45:51 +0000 (21:45 +0000)
committerDuncan P. N. Exon Smith <dexonsmith@apple.com>
Fri, 31 Jan 2014 21:45:51 +0000 (21:45 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200579 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Analysis/BlockFrequencyImpl.h
unittests/ADT/APIntTest.cpp

index 2d04c5d4a988a49096d366a888e25477c92291cf..5488847e005bc52dff63c25f2f2230455a1305b7 100644 (file)
@@ -159,7 +159,7 @@ class BlockFrequencyImpl {
       return;
     }
 
-    if(BlockT *Pred = getSingleBlockPred(BB)) {
+    if (BlockT *Pred = getSingleBlockPred(BB)) {
       if (BlocksInLoop.count(Pred))
         setBlockFreq(BB, getEdgeFreq(Pred, BB));
       // TODO: else? irreducible, ignore it for now.
index ee547db52af6f156f2d301ba73756bad9b0a750d..19c47ab13bf9c321c511e2a3a412a80e88c79635 100644 (file)
@@ -602,7 +602,7 @@ TEST(APIntTest, arrayAccess) {
   // Single word check.
   uint64_t E1 = 0x2CA7F46BF6569915ULL;
   APInt A1(64, E1);
-  for (unsigned i = 0, e = 64; i < e; ++i) {    
+  for (unsigned i = 0, e = 64; i < e; ++i) {
     EXPECT_EQ(bool(E1 & (1ULL << i)),
               A1[i]);
   }
@@ -632,7 +632,7 @@ TEST(APIntTest, LargeAPIntConstruction) {
 }
 
 TEST(APIntTest, nearestLogBase2) {
-  // Single word check.  
+  // Single word check.
 
   // Test round up.
   uint64_t I1 = 0x1800001;