diff options
author | Chris Lattner <sabre@nondot.org> | 2003-12-28 09:51:04 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-12-28 09:51:04 +0000 |
commit | 6fb6ce3148ec4a9aaab47800da2365d7f60a6f5b (patch) | |
tree | ff89dde901587d11c5771d4c7fe9ca7ef9bb2622 /tools/lli/lli.cpp | |
parent | cd824d7678785379a4a11fd7e3099cc44b37db41 (diff) |
Pass extra arguments around n stuph
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10631 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/lli/lli.cpp')
-rw-r--r-- | tools/lli/lli.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/lli/lli.cpp b/tools/lli/lli.cpp index 518c1a1d6e..15bf500bba 100644 --- a/tools/lli/lli.cpp +++ b/tools/lli/lli.cpp @@ -57,8 +57,7 @@ int main(int argc, char **argv, char * const *envp) { exit(1); } - ExecutionEngine *EE = - ExecutionEngine::create(MP, ForceInterpreter); + ExecutionEngine *EE = ExecutionEngine::create(MP, ForceInterpreter); assert(EE && "Couldn't create an ExecutionEngine, not even an interpreter?"); // If the user specifically requested an argv[0] to pass into the program, do |