summaryrefslogtreecommitdiffstats
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
commit5f49573cf6807401367520fe180fca0583a8532f (patch)
tree23bd549227c582ad1f03ac6145ee14088b5c1d08
parentc06c9332abf3693c3f1db725a8722c80637ab788 (diff)
downloadbcm5719-llvm-5f49573cf6807401367520fe180fca0583a8532f.tar.gz
bcm5719-llvm-5f49573cf6807401367520fe180fca0583a8532f.zip
Turn the block extractor on by default now that it basically works, eliminating the option.
llvm-svn: 13502
-rw-r--r--llvm/tools/bugpoint/Miscompilation.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/llvm/tools/bugpoint/Miscompilation.cpp b/llvm/tools/bugpoint/Miscompilation.cpp
index f17bfaa64a1..e920df3ecc1 100644
--- a/llvm/tools/bugpoint/Miscompilation.cpp
+++ b/llvm/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(),
OpenPOWER on IntegriCloud