mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
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:
@@ -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();
|
||||
};
|
||||
|
Reference in New Issue
Block a user