aboutsummaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/Interpreter/Interpreter.h
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2003-09-05 05:04:32 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2003-09-05 05:04:32 +0000
commit932539a941dff605bdced24c56ea10a01fc113e8 (patch)
tree95e6dfb3c649a469cd14c5c97438cf469e733f38 /lib/ExecutionEngine/Interpreter/Interpreter.h
parent413ab6655bfe0b1e58d0da6c3f4c3a9833e8a952 (diff)
Remove support for printing values from a module by name, only used
w/ interactive keyboard entry of names. With that, Support.cpp is history. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8360 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/Interpreter/Interpreter.h')
-rw-r--r--lib/ExecutionEngine/Interpreter/Interpreter.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/ExecutionEngine/Interpreter/Interpreter.h b/lib/ExecutionEngine/Interpreter/Interpreter.h
index 9ea2bb1f6d..5434fe0b81 100644
--- a/lib/ExecutionEngine/Interpreter/Interpreter.h
+++ b/lib/ExecutionEngine/Interpreter/Interpreter.h
@@ -103,7 +103,6 @@ public:
// User Interation Methods...
bool callFunction(const std::string &Name); // return true on failure
- void print(const std::string &Name);
static void print(const Type *Ty, GenericValue V);
static void printValue(const Type *Ty, GenericValue V);
@@ -181,20 +180,6 @@ private: // Helper functions
//
void printCurrentInstruction();
- // LookupMatchingNames - Search the current function namespace, then the
- // global namespace looking for values that match the specified name. Return
- // ALL matches to that name. This is obviously slow, and should only be used
- // for user interaction.
- //
- std::vector<Value*> LookupMatchingNames(const std::string &Name);
-
- // ChooseOneOption - Prompt the user to choose among the specified options to
- // pick one value. If no options are provided, emit an error. If a single
- // option is provided, just return that option.
- //
- Value *ChooseOneOption(const std::string &Name,
- const std::vector<Value*> &Opts);
-
void initializeExecutionEngine();
void initializeExternalFunctions();
};