From d60caed503d09ccff79eabdb938946970961026d Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Mon, 28 Aug 2017 07:48:37 +0000 Subject: [PATCH] Prune whitespaces in blank lines. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@311876 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Analysis/DemandedBits.h | 6 +++--- include/llvm/Analysis/RegionInfo.h | 2 +- include/llvm/Analysis/ScalarEvolution.h | 4 ++-- include/llvm/Analysis/ValueTracking.h | 2 +- include/llvm/IR/LegacyPassManagers.h | 4 ++-- include/llvm/Object/StackMapParser.h | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/include/llvm/Analysis/DemandedBits.h b/include/llvm/Analysis/DemandedBits.h index 27e47679a25..ab8668256ba 100644 --- a/include/llvm/Analysis/DemandedBits.h +++ b/include/llvm/Analysis/DemandedBits.h @@ -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; diff --git a/include/llvm/Analysis/RegionInfo.h b/include/llvm/Analysis/RegionInfo.h index 2e34928b28a..8e633cc3c86 100644 --- a/include/llvm/Analysis/RegionInfo.h +++ b/include/llvm/Analysis/RegionInfo.h @@ -254,7 +254,7 @@ public: template class RegionBase : public RegionNodeBase { friend class RegionInfoBase; - + using FuncT = typename Tr::FuncT; using BlockT = typename Tr::BlockT; using RegionInfoT = typename Tr::RegionInfoT; diff --git a/include/llvm/Analysis/ScalarEvolution.h b/include/llvm/Analysis/ScalarEvolution.h index 5d14edf2828..306c79e7f3b 100644 --- a/include/llvm/Analysis/ScalarEvolution.h +++ b/include/llvm/Analysis/ScalarEvolution.h @@ -1285,7 +1285,7 @@ public: /// whether to actually add the predicates and carry out the rewrites). Optional>> 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>> 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. diff --git a/include/llvm/Analysis/ValueTracking.h b/include/llvm/Analysis/ValueTracking.h index 45fcbeb0618..b42ce46e840 100644 --- a/include/llvm/Analysis/ValueTracking.h +++ b/include/llvm/Analysis/ValueTracking.h @@ -86,7 +86,7 @@ template 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 diff --git a/include/llvm/IR/LegacyPassManagers.h b/include/llvm/IR/LegacyPassManagers.h index b22f9302298..3dc4a776dba 100644 --- a/include/llvm/IR/LegacyPassManagers.h +++ b/include/llvm/IR/LegacyPassManagers.h @@ -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 UniqueAnalysisUsages; - + // Allocator used for allocating UAFoldingSetNodes. This handles deletion of // all allocated nodes in one fell swoop. SpecificBumpPtrAllocator AUFoldingSetNodeAllocator; - + // Maps from a pass to it's associated entry in UniqueAnalysisUsages. Does // not own the storage associated with either key or value.. DenseMap AnUsageMap; diff --git a/include/llvm/Object/StackMapParser.h b/include/llvm/Object/StackMapParser.h index 0c5e1e38cba..557db5afa82 100644 --- a/include/llvm/Object/StackMapParser.h +++ b/include/llvm/Object/StackMapParser.h @@ -62,7 +62,7 @@ public: uint64_t getStackSize() const { return read(P + sizeof(uint64_t)); } - + /// Get the number of callsite records. uint64_t getRecordCount() const { return read(P + (2 * sizeof(uint64_t))); -- 2.50.1