summaryrefslogtreecommitdiff
path: root/tools/bugpoint/ToolRunner.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-02-17 06:39:48 +0000
committerChris Lattner <sabre@nondot.org>2004-02-17 06:39:48 +0000
commitdf2cf418a8449d60512ab42e14c7a0b2608ce438 (patch)
tree526721af6a79b6d22f8eb6367cac2c50880e0e3d /tools/bugpoint/ToolRunner.h
parenta7660be6c21f23922baf61c880ec8f2224c23200 (diff)
downloadllvm-df2cf418a8449d60512ab42e14c7a0b2608ce438.tar.gz
llvm-df2cf418a8449d60512ab42e14c7a0b2608ce438.tar.bz2
llvm-df2cf418a8449d60512ab42e14c7a0b2608ce438.tar.xz
The CBE is no longer in llvm-dis
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11532 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint/ToolRunner.h')
-rw-r--r--tools/bugpoint/ToolRunner.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/bugpoint/ToolRunner.h b/tools/bugpoint/ToolRunner.h
index 8ce3f5d8f3..d5c82f4da4 100644
--- a/tools/bugpoint/ToolRunner.h
+++ b/tools/bugpoint/ToolRunner.h
@@ -95,10 +95,10 @@ struct AbstractInterpreter {
// CBE Implementation of AbstractIntepreter interface
//
class CBE : public AbstractInterpreter {
- std::string DISPath; // The path to the `llvm-dis' executable
+ std::string LLCPath; // The path to the `llc' executable
GCC *gcc;
public:
- CBE(const std::string &disPath, GCC *Gcc) : DISPath(disPath), gcc(Gcc) { }
+ CBE(const std::string &llcPath, GCC *Gcc) : LLCPath(llcPath), gcc(Gcc) { }
~CBE() { delete gcc; }
virtual int ExecuteProgram(const std::string &Bytecode,