Enable the setjmp/longjmp lowering pass

llvm-svn: 8521
This commit is contained in:
Chris Lattner 2003-09-15 04:56:44 +00:00
parent 6f99eb56c3
commit cf82b00eb5
1 changed files with 1 additions and 0 deletions

View File

@ -45,6 +45,7 @@ static inline void addPass(PassManager &PM, Pass *P) {
void AddConfiguredTransformationPasses(PassManager &PM) {
PM.add(createVerifierPass()); // Verify that input is correct
addPass(PM, createLowerSetJmpPass()); // Lower llvm.setjmp/.longjmp
addPass(PM, createFunctionResolvingPass()); // Resolve (...) functions
addPass(PM, createRaiseAllocationsPass()); // call %malloc -> malloc inst
addPass(PM, createGlobalDCEPass()); // Remove unused globals