diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-10-20 05:33:23 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-10-20 05:33:23 +0000 |
commit | 56f4502e733d0373166542f85ee641e9df72413e (patch) | |
tree | 0e3c4a15aaa84bb1fa390c8e828954cc3702c04c /unittests/ExecutionEngine | |
parent | 75b4315d0399ae642397f7deec028adb1802a8bb (diff) | |
download | external_llvm-56f4502e733d0373166542f85ee641e9df72413e.zip external_llvm-56f4502e733d0373166542f85ee641e9df72413e.tar.gz external_llvm-56f4502e733d0373166542f85ee641e9df72413e.tar.bz2 |
PowerPC ifdef'ing considered more complicated than one might like.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84603 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 814aafc..8f9b65a 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(__powerpc__) +#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(); |