diff options
author | Jeffrey Yasskin <jyasskin@google.com> | 2009-10-28 00:28:31 +0000 |
---|---|---|
committer | Jeffrey Yasskin <jyasskin@google.com> | 2009-10-28 00:28:31 +0000 |
commit | b235224ee71d4701e7b578338486f0616c0c7e24 (patch) | |
tree | 04e6d458be8397f1051838f3a2cab5acd2951710 /unittests/ExecutionEngine | |
parent | ab21db79ef1d2530880ad11f21f0b87ffca02dd4 (diff) | |
download | external_llvm-b235224ee71d4701e7b578338486f0616c0c7e24.zip external_llvm-b235224ee71d4701e7b578338486f0616c0c7e24.tar.gz external_llvm-b235224ee71d4701e7b578338486f0616c0c7e24.tar.bz2 |
Fix the ModuleDeletion test on PPC and ARM.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85352 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/ExecutionEngine')
-rw-r--r-- | unittests/ExecutionEngine/JIT/JITTest.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/unittests/ExecutionEngine/JIT/JITTest.cpp b/unittests/ExecutionEngine/JIT/JITTest.cpp index 2e0f931..e0568ad 100644 --- a/unittests/ExecutionEngine/JIT/JITTest.cpp +++ b/unittests/ExecutionEngine/JIT/JITTest.cpp @@ -410,6 +410,7 @@ TEST_F(JITTest, NonLazyLeaksNoStubs) { #endif TEST_F(JITTest, ModuleDeletion) { + TheJIT->DisableLazyCompilation(false); LoadAssembly("define void @main() { " " call i32 @computeVal() " " ret void " |