From f877cd09d0dccfdc4c6eb4851206d1b3bb73e6b1 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 17 Feb 2004 06:39:48 +0000 Subject: [PATCH] The CBE is no longer in llvm-dis llvm-svn: 11532 --- include/llvm/Support/ToolRunner.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/llvm/Support/ToolRunner.h b/include/llvm/Support/ToolRunner.h index 8ce3f5d8f37..d5c82f4da4c 100644 --- a/include/llvm/Support/ToolRunner.h +++ b/include/llvm/Support/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,