mirror of
https://github.com/RPCS3/llvm.git
synced 2025-02-08 19:46:39 +00:00
Hax0r around a deficiency in the Pass infrastructure
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5555 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
352a6fa36f
commit
be1094ea35
@ -19,7 +19,10 @@ namespace {
|
||||
DSGraph *GlobalsGraph; // FIXME: Eliminate globals graph stuff from DNE
|
||||
public:
|
||||
Steens() : ResultGraph(0) {}
|
||||
~Steens() { assert(ResultGraph == 0 && "releaseMemory not called?"); }
|
||||
~Steens() {
|
||||
releaseMyMemory();
|
||||
assert(ResultGraph == 0 && "releaseMemory not called?");
|
||||
}
|
||||
|
||||
//------------------------------------------------
|
||||
// Implement the Pass API
|
||||
@ -30,7 +33,7 @@ namespace {
|
||||
//
|
||||
bool run(Module &M);
|
||||
|
||||
virtual void releaseMemory() { delete ResultGraph; ResultGraph = 0; }
|
||||
virtual void releaseMyMemory() { delete ResultGraph; ResultGraph = 0; }
|
||||
|
||||
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
||||
AU.setPreservesAll(); // Does not transform code...
|
||||
|
Loading…
x
Reference in New Issue
Block a user