Implement PassManagerImpl_New::add().

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

llvm-svn: 31670
This commit is contained in:
Devang Patel 2006-11-11 02:06:21 +00:00
parent 90b05e0bc3
commit db789fb8f2
1 changed files with 1 additions and 1 deletions

View File

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