diff options
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter/Interpreter.h')
-rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/Interpreter.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h index 47f5c95f152..3af6726f8fb 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h +++ b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h @@ -111,7 +111,6 @@ public: // User Interation Methods... bool callFunction(const std::string &Name); // return true on failure - void setBreakpoint(const std::string &Name); void infoValue(const std::string &Name); void print(const std::string &Name); static void print(const Type *Ty, GenericValue V); @@ -125,7 +124,7 @@ public: // Code execution methods... void callFunction(Function *F, const std::vector<GenericValue> &ArgVals); - bool executeInstruction(); // Execute one instruction... + void executeInstruction(); // Execute one instruction... void stepInstruction(); // Do the 'step' command void nextInstruction(); // Do the 'next' command |