cleanup some long-dead code

llvm-svn: 12628
This commit is contained in:
Chris Lattner 2004-04-02 20:46:26 +00:00
parent d4f122044a
commit 6f29c89597
1 changed files with 1 additions and 7 deletions

View File

@ -44,14 +44,8 @@ namespace llvm {
friend class SCEVHandle;
void addRef() { ++RefCount; }
void dropRef() {
if (--RefCount == 0) {
#if 0
std::cerr << "DELETING: " << this << ": ";
print(std::cerr);
std::cerr << "\n";
#endif
if (--RefCount == 0)
delete this;
}
}
SCEV(const SCEV &); // DO NOT IMPLEMENT