[llvm-commits] [llvm] r84595 - /llvm/trunk/unittests/ExecutionEngine/JIT/JITTest.cpp

Nick Lewycky nicholas at mxc.ca
Mon Oct 19 21:09:51 PDT 2009


Author: nicholas
Date: Mon Oct 19 23:09:50 2009
New Revision: 84595

URL: http://llvm.org/viewvc/llvm-project?rev=84595&view=rev
Log:
Correct test for PowerPC.

Modified:
    llvm/trunk/unittests/ExecutionEngine/JIT/JITTest.cpp

Modified: llvm/trunk/unittests/ExecutionEngine/JIT/JITTest.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/ExecutionEngine/JIT/JITTest.cpp?rev=84595&r1=84594&r2=84595&view=diff

==============================================================================
--- llvm/trunk/unittests/ExecutionEngine/JIT/JITTest.cpp (original)
+++ llvm/trunk/unittests/ExecutionEngine/JIT/JITTest.cpp Mon Oct 19 23:09:50 2009
@@ -166,7 +166,7 @@
   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();





More information about the llvm-commits mailing list