From: Chris Lattner Date: Mon, 12 May 2003 14:31:57 +0000 (+0000) Subject: The JIT is the default mode for LLI now X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=19669f37b0add2bf4e712be262e33bdb45eed2e9;p=oota-llvm.git 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 --- diff --git a/tools/lli/lli.cpp b/tools/lli/lli.cpp index 6906465d710..30b65997d67 100644 --- a/tools/lli/lli.cpp +++ b/tools/lli/lli.cpp @@ -32,7 +32,7 @@ namespace { cl::opt ForceInterpreter("force-interpreter", cl::desc("Force interpretation: disable JIT"), - cl::init(true)); + cl::init(false)); } //===----------------------------------------------------------------------===//