[NFC] Remove unused classes

llvm-svn: 249271
This commit is contained in:
Johannes Doerfert 2015-10-04 14:52:43 +00:00
parent 403a787e03
commit 8dba07770f
2 changed files with 0 additions and 24 deletions

View File

@ -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;
};
//===---------------------------------------------------------------------===//

View File

@ -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