mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-13 00:11:56 +00:00
cleanup some long-dead code
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12628 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ec42d98395
commit
254bacd79a
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user