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 | b16c77cbd3b05bd3d66cdc06191425338842b982 (patch) | |
tree | cfa0b31a2020e0ef4d4cdf1026b0972da2337443 /llvm/unittests/ExecutionEngine/JIT/JITTest.cpp | |
parent | 27c4e8830b243cb40e83ff7f7773ea59e66c71dd (diff) | |
download | bcm5719-llvm-b16c77cbd3b05bd3d66cdc06191425338842b982.tar.gz bcm5719-llvm-b16c77cbd3b05bd3d66cdc06191425338842b982.zip |
Also check for __POWERPC__ when skipping these tests.
llvm-svn: 84482
Diffstat (limited to 'llvm/unittests/ExecutionEngine/JIT/JITTest.cpp')
-rw-r--r-- | llvm/unittests/ExecutionEngine/JIT/JITTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/ExecutionEngine/JIT/JITTest.cpp b/llvm/unittests/ExecutionEngine/JIT/JITTest.cpp index 41abfffb34b..c1629100e0e 100644 --- a/llvm/unittests/ExecutionEngine/JIT/JITTest.cpp +++ b/llvm/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(); |