diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2003-09-04 23:15:40 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2003-09-04 23:15:40 +0000 |
commit | 9ad671d54092464b0f385aa5447711eeaf03b17e (patch) | |
tree | 261b7f9f4948b1918d93de7c4a9f4d2d1e447862 /lib/ExecutionEngine/Interpreter/Interpreter.h | |
parent | 8e539488816c9e52bde0af475f72cd3e6407d558 (diff) |
Remove support for breakpoints (not used).
Remove some dead code and whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8346 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/Interpreter/Interpreter.h')
-rw-r--r-- | lib/ExecutionEngine/Interpreter/Interpreter.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/ExecutionEngine/Interpreter/Interpreter.h b/lib/ExecutionEngine/Interpreter/Interpreter.h index 47f5c95f15..3af6726f8f 100644 --- a/lib/ExecutionEngine/Interpreter/Interpreter.h +++ b/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 |