diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-10-19 09:19:32 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-10-19 09:19:32 +0000 |
commit | e9869d8eebf5e22ebdb6b714c15794beac237693 (patch) | |
tree | 128a63bda5b6c2ee4d695a13d1f8a42ad1e6e4cc /unittests/ExecutionEngine | |
parent | 0e9fe69ae8f33f9369548ff5364110c84025e777 (diff) | |
download | external_llvm-e9869d8eebf5e22ebdb6b714c15794beac237693.zip external_llvm-e9869d8eebf5e22ebdb6b714c15794beac237693.tar.gz external_llvm-e9869d8eebf5e22ebdb6b714c15794beac237693.tar.bz2 |
Also check for __POWERPC__ when skipping these tests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84482 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/ExecutionEngine')
-rw-r--r-- | unittests/ExecutionEngine/JIT/JITTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/ExecutionEngine/JIT/JITTest.cpp b/unittests/ExecutionEngine/JIT/JITTest.cpp index 41abfff..c162910 100644 --- a/unittests/ExecutionEngine/JIT/JITTest.cpp +++ b/unittests/ExecutionEngine/JIT/JITTest.cpp @@ -166,7 +166,7 @@ TEST_F(JITTest, FarCallToKnownFunction) { EXPECT_EQ(8, TestFunctionPtr()); } -#if !defined(__arm__) && !defined(__ppc__) +#if !defined(__arm__) && !defined(__POWERPC__) && !defined(__ppc__) // Test a function C which calls A and B which call each other. TEST_F(JITTest, NonLazyCompilationStillNeedsStubs) { TheJIT->DisableLazyCompilation(); |