diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2009-11-14 15:15:39 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2009-11-14 15:15:39 +0000 |
commit | 4197054ece68096af832070812526eea5802e81e (patch) | |
tree | 942b68829a9e4586b225083e59fe3356720bf823 /llvm/unittests/ExecutionEngine/JIT/JITTest.cpp | |
parent | 14718425fa805177f5d82313f8e4478546558524 (diff) | |
download | bcm5719-llvm-4197054ece68096af832070812526eea5802e81e.tar.gz bcm5719-llvm-4197054ece68096af832070812526eea5802e81e.zip |
This test doesn't work on arm either.
llvm-svn: 88794
Diffstat (limited to 'llvm/unittests/ExecutionEngine/JIT/JITTest.cpp')
-rw-r--r-- | llvm/unittests/ExecutionEngine/JIT/JITTest.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/unittests/ExecutionEngine/JIT/JITTest.cpp b/llvm/unittests/ExecutionEngine/JIT/JITTest.cpp index 14af0c62d24..98b292244fe 100644 --- a/llvm/unittests/ExecutionEngine/JIT/JITTest.cpp +++ b/llvm/unittests/ExecutionEngine/JIT/JITTest.cpp @@ -458,9 +458,7 @@ TEST_F(JITTest, ModuleDeletion) { NumTablesDeallocated); } -#if !defined(__APPLE__) || \ - !(defined(__POWERPC__) || defined (__ppc__) || \ - defined(_POWER) || defined(_ARCH_PPC)) +#if !defined(__arm__) && !defined(__powerpc__) && !defined(__ppc__) typedef int (*FooPtr) (); TEST_F(JITTest, NoStubs) { |