mirror of
https://github.com/RPCS3/llvm.git
synced 2024-11-24 12:20:00 +00:00
TD pass keeps track of which functions have complete arguments
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7048 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b512b24442
commit
c019f9bba5
@ -133,6 +133,7 @@ private:
|
||||
class TDDataStructures : public Pass {
|
||||
// DSInfo, one graph for each function
|
||||
hash_map<Function*, DSGraph*> DSInfo;
|
||||
hash_set<Function*> ArgsRemainIncomplete;
|
||||
DSGraph *GlobalsGraph;
|
||||
public:
|
||||
~TDDataStructures() { releaseMyMemory(); }
|
||||
|
@ -133,6 +133,7 @@ private:
|
||||
class TDDataStructures : public Pass {
|
||||
// DSInfo, one graph for each function
|
||||
hash_map<Function*, DSGraph*> DSInfo;
|
||||
hash_set<Function*> ArgsRemainIncomplete;
|
||||
DSGraph *GlobalsGraph;
|
||||
public:
|
||||
~TDDataStructures() { releaseMyMemory(); }
|
||||
|
Loading…
Reference in New Issue
Block a user