summaryrefslogtreecommitdiff
path: root/tools/bugpoint
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-05-12 19:02:44 +0000
committerChris Lattner <sabre@nondot.org>2004-05-12 19:02:44 +0000
commit7507c297d08517dd22a1190bf46a5c6510ab5a0d (patch)
treeba10ffe3015e879fe8197f0b7125617cf2b53c0c /tools/bugpoint
parent836db50c333aab91944174afbfb7992ee0c0c777 (diff)
downloadllvm-7507c297d08517dd22a1190bf46a5c6510ab5a0d.tar.gz
llvm-7507c297d08517dd22a1190bf46a5c6510ab5a0d.tar.bz2
llvm-7507c297d08517dd22a1190bf46a5c6510ab5a0d.tar.xz
Turn the block extractor on by default now that it basically works, eliminating the option.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13502 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint')
-rw-r--r--tools/bugpoint/Miscompilation.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/tools/bugpoint/Miscompilation.cpp b/tools/bugpoint/Miscompilation.cpp
index f17bfaa64a..e920df3ecc 100644
--- a/tools/bugpoint/Miscompilation.cpp
+++ b/tools/bugpoint/Miscompilation.cpp
@@ -29,10 +29,6 @@ using namespace llvm;
namespace llvm {
extern cl::list<std::string> InputArgv;
- cl::opt<bool>
- EnableBlockExtraction("enable-block-extraction",
- cl::desc("Enable basic block extraction for "
- "miscompilation debugging (experimental)"));
}
namespace {
@@ -390,9 +386,6 @@ bool ReduceMiscompiledBlocks::TestFuncs(const std::vector<BasicBlock*> &BBs) {
static bool ExtractBlocks(BugDriver &BD,
bool (*TestFn)(BugDriver &, Module *, Module *),
std::vector<Function*> &MiscompiledFunctions) {
- // Not enabled??
- if (!EnableBlockExtraction) return false;
-
std::vector<BasicBlock*> Blocks;
for (unsigned i = 0, e = MiscompiledFunctions.size(); i != e; ++i)
for (Function::iterator I = MiscompiledFunctions[i]->begin(),