diff options
author | Chris Lattner <sabre@nondot.org> | 2001-10-27 05:54:31 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-10-27 05:54:31 +0000 |
commit | 6642eec003caf3afa90d8eb8b71bc9b41015f31f (patch) | |
tree | 3faa968d40eac5299fe0b3f06ee08b5cdefd2e4d /llvm/lib/ExecutionEngine/Interpreter/Interpreter.h | |
parent | e81c4099528fc3d7bb4dd99eb6a191c725ebaa82 (diff) | |
download | bcm5719-llvm-6642eec003caf3afa90d8eb8b71bc9b41015f31f.tar.gz bcm5719-llvm-6642eec003caf3afa90d8eb8b71bc9b41015f31f.zip |
Provide argv for commands
llvm-svn: 987
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter/Interpreter.h')
-rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/Interpreter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h index d9a6834128d..5b123466aa6 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h +++ b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h @@ -88,7 +88,7 @@ public: // Hack until we can parse command line args... bool callMainMethod(const string &MainName, - const string &InputFilename); + const vector<string> &InputFilename); void list(); // Do the 'list' command void printStackTrace(); // Do the 'backtrace' command |