[llvm] r274479 - Untabify.

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


Author: chapuni
Date: Sun Jul  3 20:26:21 2016
New Revision: 274479

URL: http://llvm.org/viewvc/llvm-project?rev=274479&view=rev
Log:
Untabify.

Modified:
    llvm/trunk/lib/Analysis/LazyValueInfo.cpp
    llvm/trunk/lib/Analysis/ScalarEvolution.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=274479&r1=274478&r2=274479&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/LazyValueInfo.cpp (original)
+++ llvm/trunk/lib/Analysis/LazyValueInfo.cpp Sun Jul  3 20:26:21 2016
@@ -1497,7 +1497,7 @@ Constant *LazyValueInfo::getConstant(Val
 }
 
 ConstantRange LazyValueInfo::getConstantRange(Value *V, BasicBlock *BB,
-					      Instruction *CxtI) {
+                                              Instruction *CxtI) {
   assert(V->getType()->isIntegerTy());
   unsigned Width = V->getType()->getIntegerBitWidth();
   const DataLayout &DL = BB->getModule()->getDataLayout();

Modified: llvm/trunk/lib/Analysis/ScalarEvolution.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/ScalarEvolution.cpp?rev=274479&r1=274478&r2=274479&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/ScalarEvolution.cpp (original)
+++ llvm/trunk/lib/Analysis/ScalarEvolution.cpp Sun Jul  3 20:26:21 2016
@@ -5020,7 +5020,7 @@ const SCEV *ScalarEvolution::createSCEV(
           MulOps.push_back(getSCEV(BO->LHS));
           break;
         }
-	BO = NewBO;
+        BO = NewBO;
       } while (true);
 
       return getMulExpr(MulOps);

Modified: llvm/trunk/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp?rev=274479&r1=274478&r2=274479&view=diff
==============================================================================
--- llvm/trunk/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp (original)
+++ llvm/trunk/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp Sun Jul  3 20:26:21 2016
@@ -479,7 +479,7 @@ Error RuntimeDyldImpl::computeTotalAlloc
       // If this is the first common symbol, use its alignment as the alignment
       // for the common symbols section.
       if (CommonSize == 0)
-	CommonAlign = Align;
+        CommonAlign = Align;
       CommonSize = alignTo(CommonSize, Align) + Size;
     }
   }
@@ -601,9 +601,8 @@ Error RuntimeDyldImpl::emitCommonSymbols
 
   // Allocate memory for the section
   unsigned SectionID = Sections.size();
-  uint8_t *Addr = MemMgr.allocateDataSection(CommonSize, CommonAlign,
-                                             SectionID, "<common symbols>",
-					     false);
+  uint8_t *Addr = MemMgr.allocateDataSection(CommonSize, CommonAlign, SectionID,
+                                             "<common symbols>", false);
   if (!Addr)
     report_fatal_error("Unable to allocate memory for common symbols!");
   uint64_t Offset = 0;




More information about the llvm-commits mailing list