The CBE is no longer in llvm-dis
authorChris Lattner <sabre@nondot.org>
Tue, 17 Feb 2004 06:39:48 +0000 (06:39 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 17 Feb 2004 06:39:48 +0000 (06:39 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11532 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/ToolRunner.h
tools/bugpoint/ToolRunner.h

index 8ce3f5d8f37cce65c77a63f8f230b2f02d4c3b62..d5c82f4da4cce7a27112baf243d6652b7cfbaf96 100644 (file)
@@ -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,
index 8ce3f5d8f37cce65c77a63f8f230b2f02d4c3b62..d5c82f4da4cce7a27112baf243d6652b7cfbaf96 100644 (file)
@@ -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,