diff options
author | Johannes Doerfert <doerfert@cs.uni-saarland.de> | 2015-10-04 14:52:43 +0000 |
---|---|---|
committer | Johannes Doerfert <doerfert@cs.uni-saarland.de> | 2015-10-04 14:52:43 +0000 |
commit | 8dba07770f82a02d563b1e6c27fa4ee21790410a (patch) | |
tree | e1d699a7e3f56fdcc08291589c88bb994751d3c1 | |
parent | 403a787e03785aee9971b12dc6733f16f58a4535 (diff) | |
download | bcm5719-llvm-8dba07770f82a02d563b1e6c27fa4ee21790410a.tar.gz bcm5719-llvm-8dba07770f82a02d563b1e6c27fa4ee21790410a.zip |
[NFC] Remove unused classes
llvm-svn: 249271
-rw-r--r-- | polly/include/polly/ScopInfo.h | 19 | ||||
-rw-r--r-- | polly/lib/Analysis/ScopInfo.cpp | 5 |
2 files changed, 0 insertions, 24 deletions
diff --git a/polly/include/polly/ScopInfo.h b/polly/include/polly/ScopInfo.h index b3a04b4b0e0..9b385e08a08 100644 --- a/polly/include/polly/ScopInfo.h +++ b/polly/include/polly/ScopInfo.h @@ -63,25 +63,6 @@ class MemoryAccess; class Scop; class ScopStmt; class ScopInfo; -class Comparison; -class SCEVAffFunc; - -class Comparison { - const SCEV *LHS; - const SCEV *RHS; - - ICmpInst::Predicate Pred; - -public: - Comparison(const SCEV *LHS, const SCEV *RHS, ICmpInst::Predicate Pred) - : LHS(LHS), RHS(RHS), Pred(Pred) {} - - const SCEV *getLHS() const { return LHS; } - const SCEV *getRHS() const { return RHS; } - - ICmpInst::Predicate getPred() const { return Pred; } - void print(raw_ostream &OS) const; -}; //===---------------------------------------------------------------------===// diff --git a/polly/lib/Analysis/ScopInfo.cpp b/polly/lib/Analysis/ScopInfo.cpp index cbcaa12d329..7989eb8f99b 100644 --- a/polly/lib/Analysis/ScopInfo.cpp +++ b/polly/lib/Analysis/ScopInfo.cpp @@ -93,11 +93,6 @@ static cl::opt<bool> DetectReductions("polly-detect-reductions", cl::init(true), cl::cat(PollyCategory)); //===----------------------------------------------------------------------===// -/// Helper Classes - -void Comparison::print(raw_ostream &OS) const { - // Not yet implemented. -} // Create a sequence of two schedules. Either argument may be null and is // interpreted as the empty schedule. Can also return null if both schedules are |