Implement PassManagerImpl_New::add().

Just add pass into the pass manager queue without processing analysis.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31670 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Devang Patel 2006-11-11 02:06:21 +00:00
parent 893a5a6815
commit fcb2d940a0

View File

@ -447,7 +447,7 @@ PassManagerImpl_New::schedulePasses() {
/// Add pass P to the queue of passes to run.
void
PassManagerImpl_New::add(Pass *P) {
/* TODO */
addPassToManager(P, false);
}
// PassManager_New implementation