diff options
author | Jeffrey Yasskin <jyasskin@google.com> | 2009-10-27 22:39:42 +0000 |
---|---|---|
committer | Jeffrey Yasskin <jyasskin@google.com> | 2009-10-27 22:39:42 +0000 |
commit | 18fec73e29d68b9c7473720507f51de39b0873b1 (patch) | |
tree | 72f878ea1672007c3f79c0d3666a541ff3351931 /tools/lli | |
parent | 1ff2c485e240e00e7d84f1dd53ee7a111d25f5d3 (diff) |
Revert the API changes from r85295 to make it easier for people to build
against both 2.6 and HEAD. The default is still changed to eager jitting.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85330 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/lli')
-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 0fa39dab38..218bb93670 100644 --- a/tools/lli/lli.cpp +++ b/tools/lli/lli.cpp @@ -165,7 +165,7 @@ int main(int argc, char **argv, char * const *envp) { EE->RegisterJITEventListener(createOProfileJITEventListener()); - EE->EnableLazyCompilation(!NoLazyCompilation); + EE->DisableLazyCompilation(NoLazyCompilation); // If the user specifically requested an argv[0] to pass into the program, // do it now. |