[llvm] [BOLT] add disable pass flags (PR #93032)

Rafael Auler via llvm-commits llvm-commits at lists.llvm.org
Wed May 22 11:54:52 PDT 2024


================
@@ -257,6 +257,56 @@ static cl::opt<bool> CMOVConversionFlag("cmov-conversion",
                                         cl::ReallyHidden,
                                         cl::cat(BoltOptCategory));
 
+static cl::opt<bool> DisableLongJmp("disable-longjmp-pass",
+                                    cl::desc("Disable the long jump pass"),
+                                    cl::ReallyHidden, cl::cat(BoltOptCategory));
+
+static cl::opt<bool> DisableBranchFix("disable-branch-fix-pass",
----------------
rafaelauler wrote:

This is a mandatory pass

https://github.com/llvm/llvm-project/pull/93032


More information about the llvm-commits mailing list