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 | 7e858573a8bb2f4fdf2207832607234ab1e21b5e (patch) | |
tree | d04ef7e4e03e637e4833d9efce4f6bc093a1bfa1 | |
parent | c243f299cec42c16803707172099fb92856cefa3 (diff) | |
download | bcm5719-llvm-7e858573a8bb2f4fdf2207832607234ab1e21b5e.tar.gz bcm5719-llvm-7e858573a8bb2f4fdf2207832607234ab1e21b5e.zip |
PowerPC ifdef'ing considered more complicated than one might like.
llvm-svn: 84603
-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 814aafcfb42..8f9b65ab0ba 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(__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(); |