diff options
author | Chris Lattner <sabre@nondot.org> | 2003-05-12 14:31:57 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-05-12 14:31:57 +0000 |
commit | 19669f37b0add2bf4e712be262e33bdb45eed2e9 (patch) | |
tree | 35db68bd317f34901c93cc62ef215fb8fe9cb3aa | |
parent | 572c77066808fc0e9ee1d212dab227f28bf5e28a (diff) |
The JIT is the default mode for LLI now
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6118 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/lli/lli.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lli/lli.cpp b/tools/lli/lli.cpp index 6906465d71..30b65997d6 100644 --- a/tools/lli/lli.cpp +++ b/tools/lli/lli.cpp @@ -32,7 +32,7 @@ namespace { cl::opt<bool> ForceInterpreter("force-interpreter", cl::desc("Force interpretation: disable JIT"), - cl::init(true)); + cl::init(false)); } //===----------------------------------------------------------------------===// |