diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2009-10-20 04:09:50 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2009-10-20 04:09:50 +0000 |
commit | 393c71cdd764989b2fa220f43c15e30ca505e369 (patch) | |
tree | 7b02e2ee3902b0c12696dadaa62e1417e3ed489b /llvm/unittests/ExecutionEngine/JIT | |
parent | 074d8810cd90fea19cb392600b893a0cf36f4933 (diff) | |
download | bcm5719-llvm-393c71cdd764989b2fa220f43c15e30ca505e369.tar.gz bcm5719-llvm-393c71cdd764989b2fa220f43c15e30ca505e369.zip |
Correct test for PowerPC.
llvm-svn: 84595
Diffstat (limited to 'llvm/unittests/ExecutionEngine/JIT')
-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 c1629100e0e..814aafcfb42 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__) && !defined(__ppc__) +#if !defined(__arm__) && !defined(__powerpc__) // Test a function C which calls A and B which call each other. TEST_F(JITTest, NonLazyCompilationStillNeedsStubs) { TheJIT->DisableLazyCompilation(); |