aboutsummaryrefslogtreecommitdiffstats
path: root/tools/bugpoint/BugDriver.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-09-15 21:29:15 +0000
committerChris Lattner <sabre@nondot.org>2006-09-15 21:29:15 +0000
commitc600f3c337f18c62116ac58b701e4f7ae6d2fb1a (patch)
treec49a64394e4f4a1c963d585efc2b056ce8fb4c6b /tools/bugpoint/BugDriver.h
parentcbce2f6c1b5b63b16b856f80e6fc026764b4eab4 (diff)
downloadexternal_llvm-c600f3c337f18c62116ac58b701e4f7ae6d2fb1a.zip
external_llvm-c600f3c337f18c62116ac58b701e4f7ae6d2fb1a.tar.gz
external_llvm-c600f3c337f18c62116ac58b701e4f7ae6d2fb1a.tar.bz2
Add a new -cbe-bug mode, which works just like -run-llc, except that it uses
LLC as the reference compiler to reduce testcases for bugs in GCC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30400 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint/BugDriver.h')
-rw-r--r--tools/bugpoint/BugDriver.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/bugpoint/BugDriver.h b/tools/bugpoint/BugDriver.h
index f719b64..2029e2d 100644
--- a/tools/bugpoint/BugDriver.h
+++ b/tools/bugpoint/BugDriver.h
@@ -30,7 +30,6 @@ class Instruction;
class DebugCrashes;
-class CBE;
class GCC;
extern bool DisableSimplifyCFG;
@@ -45,7 +44,7 @@ class BugDriver {
Module *Program; // The raw program, linked together
std::vector<const PassInfo*> PassesToRun;
AbstractInterpreter *Interpreter; // How to run the program
- CBE *cbe;
+ AbstractInterpreter *cbe;
GCC *gcc;
bool run_as_child;
bool run_find_bugs;