1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

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 f00e57a19c
commit b324dacabf

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