mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-28 14:36:34 +00:00
Hax0r around a deficiency in the Pass infrastructure
llvm-svn: 5555
This commit is contained in:
parent
32a8143e30
commit
b178c26c20
@ -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…
Reference in New Issue
Block a user