Make SCEVExpanders private methods private, instead of protected.

llvm-svn: 69806
This commit is contained in:
Dan Gohman 2009-04-22 16:00:36 +00:00
parent 956ae9dc15
commit 87d138c3b9
1 changed files with 2 additions and 1 deletions

View File

@ -91,7 +91,8 @@ namespace llvm {
/// of work to avoid inserting an obviously redundant operation.
static Value *InsertBinop(Instruction::BinaryOps Opcode, Value *LHS,
Value *RHS, Instruction *InsertPt);
protected:
private:
Value *expand(const SCEV *S);
Value *visitConstant(const SCEVConstant *S) {