]> granicus.if.org Git - llvm/commitdiff
Prune whitespaces in blank lines.
authorNAKAMURA Takumi <geek4civic@gmail.com>
Mon, 28 Aug 2017 07:48:37 +0000 (07:48 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Mon, 28 Aug 2017 07:48:37 +0000 (07:48 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@311876 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Analysis/DemandedBits.h
include/llvm/Analysis/RegionInfo.h
include/llvm/Analysis/ScalarEvolution.h
include/llvm/Analysis/ValueTracking.h
include/llvm/IR/LegacyPassManagers.h
include/llvm/Object/StackMapParser.h

index 27e47679a251e3c8c503e0d77e159a2432d92df2..ab8668256ba2815b65260abf5e299356220da7b2 100644 (file)
@@ -48,7 +48,7 @@ public:
 
   /// Return true if, during analysis, I could not be reached.
   bool isInstructionDead(Instruction *I);
-  
+
   void print(raw_ostream &OS);
 
 private:
@@ -80,10 +80,10 @@ public:
 
   bool runOnFunction(Function &F) override;
   void getAnalysisUsage(AnalysisUsage &AU) const override;
-  
+
   /// Clean up memory in between runs
   void releaseMemory() override;
-  
+
   DemandedBits &getDemandedBits() { return *DB; }
 
   void print(raw_ostream &OS, const Module *M) const override;
index 2e34928b28adf0d93fb8b2690849069529c3f0fd..8e633cc3c867f9255ca3bf33ddc5ddc7d732739f 100644 (file)
@@ -254,7 +254,7 @@ public:
 template <class Tr>
 class RegionBase : public RegionNodeBase<Tr> {
   friend class RegionInfoBase<Tr>;
+
   using FuncT = typename Tr::FuncT;
   using BlockT = typename Tr::BlockT;
   using RegionInfoT = typename Tr::RegionInfoT;
index 5d14edf282894c7dd8c264613dfb88720de25dc5..306c79e7f3bdcff022273f1bf97c3c2bd6c06c0b 100644 (file)
@@ -1285,7 +1285,7 @@ public:
   /// whether to actually add the predicates and carry out the rewrites).
   Optional<std::pair<const SCEV *, SmallVector<const SCEVPredicate *, 3>>>
   createAddRecFromPHIWithCasts(const SCEVUnknown *SymbolicPHI);
-  
+
   /// Returns an expression for a GEP
   ///
   /// \p GEP The GEP. The indices contained in the GEP itself are ignored,
@@ -1772,7 +1772,7 @@ private:
   DenseMap<std::pair<const SCEVUnknown *, const Loop *>,
            std::pair<const SCEV *, SmallVector<const SCEVPredicate *, 3>>>
       PredicatedSCEVRewrites;
-   
+
   /// The head of a linked list of all SCEVUnknown values that have been
   /// allocated. This is used by releaseMemory to locate them all and call
   /// their destructors.
index 45fcbeb0618ccef76fc695665569c4b33f09d62f..b42ce46e840c219611338e64f0d7a9338d989103 100644 (file)
@@ -86,7 +86,7 @@ template <typename T> class ArrayRef;
                               const DominatorTree *DT = nullptr);
 
   bool isOnlyUsedInZeroEqualityComparison(const Instruction *CxtI);
-  
+
   /// Return true if the given value is known to be non-zero when defined. For
   /// vectors, return true if every element is known to be non-zero when
   /// defined. For pointers, if the context instruction and dominator tree are
index b22f9302298d5d397e40306809f3da7cc0826655..3dc4a776dba08dec356484641b0abc9929e25c20 100644 (file)
@@ -279,11 +279,11 @@ private:
   // when we have multiple instances of the same pass since they'll usually
   // have the same analysis usage and can share storage.
   FoldingSet<AUFoldingSetNode> UniqueAnalysisUsages;
-  
+
   // Allocator used for allocating UAFoldingSetNodes.  This handles deletion of
   // all allocated nodes in one fell swoop.
   SpecificBumpPtrAllocator<AUFoldingSetNode> AUFoldingSetNodeAllocator;
-  
+
   // Maps from a pass to it's associated entry in UniqueAnalysisUsages.  Does
   // not own the storage associated with either key or value.. 
   DenseMap<Pass *, AnalysisUsage*> AnUsageMap;
index 0c5e1e38cbaa4fbdd08eb59b19209ce67f05f5ba..557db5afa8256473cff43beee0bbcb35f380e4f4 100644 (file)
@@ -62,7 +62,7 @@ public:
     uint64_t getStackSize() const {
       return read<uint64_t>(P + sizeof(uint64_t));
     }
-    
+
     /// Get the number of callsite records.
     uint64_t getRecordCount() const {
       return read<uint64_t>(P + (2 * sizeof(uint64_t)));