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
This commit is contained in:
Brian Gaeke
2003-09-05 05:04:32 +00:00
parent 413ab6655b
commit 932539a941
3 changed files with 0 additions and 109 deletions

View File

@@ -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();
};