Don't conditionalize execution of the SjLj EH prepare pass.
authorBill Wendling <isanbard@gmail.com>
Wed, 28 Sep 2011 03:07:34 +0000 (03:07 +0000)
committerBill Wendling <isanbard@gmail.com>
Wed, 28 Sep 2011 03:07:34 +0000 (03:07 +0000)
We may need an SjLj EH preparation pass for some call site information, at least
in the short term.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140674 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/LLVMTargetMachine.cpp

index 9196816b351bd610c0e2e65cde2ae15436296ec6..8f463e2d3f9d46d68da840a302704445a1ed3489 100644 (file)
@@ -45,9 +45,6 @@ namespace llvm {
   bool EnableFastISel;
 }
 
   bool EnableFastISel;
 }
 
-static cl::opt<bool> DisableOldSjLjEH("disable-old-sjlj-eh", cl::Hidden,
-    cl::desc("Disable the old SjLj EH preparation pass"));
-
 static cl::opt<bool> DisablePostRA("disable-post-ra", cl::Hidden,
     cl::desc("Disable Post Regalloc"));
 static cl::opt<bool> DisableBranchFold("disable-branch-fold", cl::Hidden,
 static cl::opt<bool> DisablePostRA("disable-post-ra", cl::Hidden,
     cl::desc("Disable Post Regalloc"));
 static cl::opt<bool> DisableBranchFold("disable-branch-fold", cl::Hidden,
@@ -325,8 +322,7 @@ bool LLVMTargetMachine::addCommonCodeGenPasses(PassManagerBase &PM,
     // removed from the parent invoke(s). This could happen when a landing
     // pad is shared by multiple invokes and is also a target of a normal
     // edge from elsewhere.
     // removed from the parent invoke(s). This could happen when a landing
     // pad is shared by multiple invokes and is also a target of a normal
     // edge from elsewhere.
-    if (!DisableOldSjLjEH)
-      PM.add(createSjLjEHPass(getTargetLowering()));
+    PM.add(createSjLjEHPass(getTargetLowering()));
     // FALLTHROUGH
   case ExceptionHandling::DwarfCFI:
   case ExceptionHandling::ARM:
     // FALLTHROUGH
   case ExceptionHandling::DwarfCFI:
   case ExceptionHandling::ARM: