From 387b7a11ce3da5a26f587dff14fa30c452ba4b0c Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 12 May 2004 19:02:44 +0000 Subject: [PATCH] Turn the block extractor on by default now that it basically works, eliminating the option. llvm-svn: 13502 --- tools/bugpoint/Miscompilation.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tools/bugpoint/Miscompilation.cpp b/tools/bugpoint/Miscompilation.cpp index f17bfaa64a1..e920df3ecc1 100644 --- a/tools/bugpoint/Miscompilation.cpp +++ b/tools/bugpoint/Miscompilation.cpp @@ -29,10 +29,6 @@ using namespace llvm; namespace llvm { extern cl::list InputArgv; - cl::opt - 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 &BBs) { static bool ExtractBlocks(BugDriver &BD, bool (*TestFn)(BugDriver &, Module *, Module *), std::vector &MiscompiledFunctions) { - // Not enabled?? - if (!EnableBlockExtraction) return false; - std::vector Blocks; for (unsigned i = 0, e = MiscompiledFunctions.size(); i != e; ++i) for (Function::iterator I = MiscompiledFunctions[i]->begin(),