mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
Implement FunctionPassManager_New::FunctionPassManager_New(ModuleProvider *P)
llvm-svn: 32368
This commit is contained in:
parent
53c676f8db
commit
4833df8e9e
@ -119,7 +119,7 @@ private:
|
||||
/// FunctionPassManager_New manages FunctionPasses and BasicBlockPassManagers.
|
||||
class FunctionPassManager_New {
|
||||
public:
|
||||
FunctionPassManager_New(ModuleProvider *P) { /* TODO */ }
|
||||
FunctionPassManager_New(ModuleProvider *P);
|
||||
FunctionPassManager_New();
|
||||
~FunctionPassManager_New() { /* TODO */ };
|
||||
|
||||
|
@ -734,6 +734,11 @@ FunctionPassManager_New::FunctionPassManager_New() {
|
||||
FPM = new FunctionPassManagerImpl_New(0);
|
||||
}
|
||||
|
||||
FunctionPassManager_New::FunctionPassManager_New(ModuleProvider *P) {
|
||||
FPM = new FunctionPassManagerImpl_New(0);
|
||||
MP = P;
|
||||
}
|
||||
|
||||
/// add - Add a pass to the queue of passes to run. This passes
|
||||
/// ownership of the Pass to the PassManager. When the
|
||||
/// PassManager_X is destroyed, the pass will be destroyed as well, so
|
||||
|
Loading…
x
Reference in New Issue
Block a user