]> granicus.if.org Git - llvm/commitdiff
Untabify.
authorNAKAMURA Takumi <geek4civic@gmail.com>
Mon, 4 Jul 2016 01:26:21 +0000 (01:26 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Mon, 4 Jul 2016 01:26:21 +0000 (01:26 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@274479 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/LazyValueInfo.cpp
lib/Analysis/ScalarEvolution.cpp
lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp

index 475e42031c098d0988aa34651d018a2a06674b5a..1b26278c7d8f7851f21c432eefe62b3db8a9fe27 100644 (file)
@@ -1497,7 +1497,7 @@ Constant *LazyValueInfo::getConstant(Value *V, BasicBlock *BB,
 }
 
 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();
index 4e3e2b5442a75d03de14d60f233d04253f2651e9..9c1712ab7715e84cfd036f47fdd94d7024174777 100644 (file)
@@ -5020,7 +5020,7 @@ const SCEV *ScalarEvolution::createSCEV(Value *V) {
           MulOps.push_back(getSCEV(BO->LHS));
           break;
         }
-       BO = NewBO;
+        BO = NewBO;
       } while (true);
 
       return getMulExpr(MulOps);
index 664be31c4cfa3c7d668613306c1917a20b2961cc..6fc9999ac7bd898d06dcbb54cfacba834c742664 100644 (file)
@@ -479,7 +479,7 @@ Error RuntimeDyldImpl::computeTotalAllocSize(const ObjectFile &Obj,
       // 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(const ObjectFile &Obj,
 
   // 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;