diff options
author | Chris Lattner <sabre@nondot.org> | 2002-11-07 19:29:31 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-11-07 19:29:31 +0000 |
commit | a2b4c6cc492bfadc3cd8ebc4f167e28bc81d0268 (patch) | |
tree | b67f7e3d9f775c2489bd54f7a130b4220ab3752c /llvm/lib/ExecutionEngine/Interpreter/Interpreter.h | |
parent | 6f7e74ccbb7286b69572c6f7132b62c298c5b52e (diff) | |
download | bcm5719-llvm-a2b4c6cc492bfadc3cd8ebc4f167e28bc81d0268.tar.gz bcm5719-llvm-a2b4c6cc492bfadc3cd8ebc4f167e28bc81d0268.zip |
Make command line arguments setup be endian correct!!
llvm-svn: 4605
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 a02a0abd05c..c0d8b75aca5 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h +++ b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h @@ -126,9 +126,9 @@ public: static void print(const Type *Ty, GenericValue V); static void printValue(const Type *Ty, GenericValue V); - // Hack until we can parse command line args... bool callMainMethod(const std::string &MainName, const std::vector<std::string> &InputFilename); + GenericValue CreateArgv(const std::vector<std::string> &InputArgv); void list(); // Do the 'list' command void printStackTrace(); // Do the 'backtrace' command |