remove a few dead insertion methods.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79882 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2009-08-24 02:39:26 +00:00
parent 87cbef0df0
commit 9661c13c37
8 changed files with 2 additions and 38 deletions

View File

@@ -121,11 +121,6 @@ void SCEV::dump() const {
errs() << '\n';
}
void SCEV::print(std::ostream &o) const {
raw_os_ostream OS(o);
print(OS);
}
bool SCEV::isZero() const {
if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(this))
return SC->getValue()->isZero();