summaryrefslogtreecommitdiff
path: root/include/llvm/Support/ToolRunner.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Support/ToolRunner.h')
-rw-r--r--include/llvm/Support/ToolRunner.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Support/ToolRunner.h b/include/llvm/Support/ToolRunner.h
index 8ce3f5d8f3..d5c82f4da4 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,