From: David Goodwin Date: Tue, 28 Jul 2009 23:08:36 +0000 (+0000) Subject: Add a bugpoint flag to disable block extraction. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=265d82e4c68fa30b7ff1cb650456249f7068bdd6;p=oota-llvm.git Add a bugpoint flag to disable block extraction. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77389 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/bugpoint/Miscompilation.cpp b/tools/bugpoint/Miscompilation.cpp index 7c7d5a3e357..310e2ac0a9d 100644 --- a/tools/bugpoint/Miscompilation.cpp +++ b/tools/bugpoint/Miscompilation.cpp @@ -37,6 +37,10 @@ namespace { DisableLoopExtraction("disable-loop-extraction", cl::desc("Don't extract loops when searching for miscompilations"), cl::init(false)); + static llvm::cl::opt + DisableBlockExtraction("disable-block-extraction", + cl::desc("Don't extract blocks when searching for miscompilations"), + cl::init(false)); class ReduceMiscompilingPasses : public ListReducer { BugDriver &BD; @@ -556,7 +560,7 @@ DebugAMiscompilation(BugDriver &BD, outs() << '\n'; } - if (!BugpointIsInterrupted && + if (!BugpointIsInterrupted && !DisableBlockExtraction && ExtractBlocks(BD, TestFn, MiscompiledFunctions)) { // Okay, we extracted some blocks and the problem still appears. See if we // can eliminate some of the created functions from being candidates.