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 | 411281cc8281cf3b6f7b71fb46790d932078acb9 (patch) | |
tree | 05165e89920e9b619021302176f6c8c3ad105294 /llvm/lib/ExecutionEngine/Interpreter/Interpreter.h | |
parent | 92f8b30d24ce6cbf2537c0b6c9da7641aee8d17a (diff) | |
download | bcm5719-llvm-411281cc8281cf3b6f7b71fb46790d932078acb9.tar.gz bcm5719-llvm-411281cc8281cf3b6f7b71fb46790d932078acb9.zip |
Remove support for breakpoints (not used).
Remove some dead code and whitespace.
llvm-svn: 8346
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 |