forked from OSchip/llvm-project
parent
403a787e03
commit
8dba07770f
|
@ -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;
|
||||
};
|
||||
|
||||
//===---------------------------------------------------------------------===//
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue