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 | 7e30b39c67879027aac55e9e1e142e4bf98190cc (patch) | |
tree | c99b6337800d9e8bc62b366c573c84f33b5f4591 /llvm/unittests/ExecutionEngine/JIT | |
parent | d04cb6d0fa650bcb3dc75ec643de0c812c56eb80 (diff) | |
download | bcm5719-llvm-7e30b39c67879027aac55e9e1e142e4bf98190cc.tar.gz bcm5719-llvm-7e30b39c67879027aac55e9e1e142e4bf98190cc.zip |
Fix the ModuleDeletion test on PPC and ARM.
llvm-svn: 85352
Diffstat (limited to 'llvm/unittests/ExecutionEngine/JIT')
-rw-r--r-- | llvm/unittests/ExecutionEngine/JIT/JITTest.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/unittests/ExecutionEngine/JIT/JITTest.cpp b/llvm/unittests/ExecutionEngine/JIT/JITTest.cpp index 2e0f9311a1f..e0568ad2dcd 100644 --- a/llvm/unittests/ExecutionEngine/JIT/JITTest.cpp +++ b/llvm/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 " |