[polly] r303189 - [ScopInfo] Remove unused MemoryAccess::BaseName. NFC.
Michael Kruse via llvm-commits
llvm-commits at lists.llvm.org
Tue May 16 09:52:25 PDT 2017
Author: meinersbur
Date: Tue May 16 11:52:24 2017
New Revision: 303189
URL: http://llvm.org/viewvc/llvm-project?rev=303189&view=rev
Log:
[ScopInfo] Remove unused MemoryAccess::BaseName. NFC.
Modified:
polly/trunk/include/polly/ScopInfo.h
Modified: polly/trunk/include/polly/ScopInfo.h
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/include/polly/ScopInfo.h?rev=303189&r1=303188&r2=303189&view=diff
==============================================================================
--- polly/trunk/include/polly/ScopInfo.h (original)
+++ polly/trunk/include/polly/ScopInfo.h Tue May 16 11:52:24 2017
@@ -534,9 +534,6 @@ private:
/// instruction defining the value.
AssertingVH<Value> BaseAddr;
- /// An unique name of the accessed array.
- std::string BaseName;
-
/// Type a single array element wrt. this access.
Type *ElementType;
@@ -859,8 +856,6 @@ public:
/// Return a string representation of the reduction type @p RT.
static const std::string getReductionOperatorStr(ReductionType RT);
- const std::string &getBaseName() const { return BaseName; }
-
/// Return the element type of the accessed array wrt. this access.
Type *getElementType() const { return ElementType; }
More information about the llvm-commits
mailing list