aboutsummaryrefslogtreecommitdiffstats
path: root/tools/lli
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-12-28 09:51:04 +0000
committerChris Lattner <sabre@nondot.org>2003-12-28 09:51:04 +0000
commit6fb6ce3148ec4a9aaab47800da2365d7f60a6f5b (patch)
treeff89dde901587d11c5771d4c7fe9ca7ef9bb2622 /tools/lli
parentcd824d7678785379a4a11fd7e3099cc44b37db41 (diff)
downloadexternal_llvm-6fb6ce3148ec4a9aaab47800da2365d7f60a6f5b.zip
external_llvm-6fb6ce3148ec4a9aaab47800da2365d7f60a6f5b.tar.gz
external_llvm-6fb6ce3148ec4a9aaab47800da2365d7f60a6f5b.tar.bz2
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')
-rw-r--r--tools/lli/lli.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/lli/lli.cpp b/tools/lli/lli.cpp
index 518c1a1..15bf500 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