[llvm-commits] [llvm] r88794 - /llvm/trunk/unittests/ExecutionEngine/JIT/JITTest.cpp
Benjamin Kramer
benny.kra at googlemail.com
Sat Nov 14 07:15:39 PST 2009
Author: d0k
Date: Sat Nov 14 09:15:39 2009
New Revision: 88794
URL: http://llvm.org/viewvc/llvm-project?rev=88794&view=rev
Log:
This test doesn't work on arm either.
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=88794&r1=88793&r2=88794&view=diff
==============================================================================
--- llvm/trunk/unittests/ExecutionEngine/JIT/JITTest.cpp (original)
+++ llvm/trunk/unittests/ExecutionEngine/JIT/JITTest.cpp Sat Nov 14 09:15:39 2009
@@ -458,9 +458,7 @@
NumTablesDeallocated);
}
-#if !defined(__APPLE__) || \
- !(defined(__POWERPC__) || defined (__ppc__) || \
- defined(_POWER) || defined(_ARCH_PPC))
+#if !defined(__arm__) && !defined(__powerpc__) && !defined(__ppc__)
typedef int (*FooPtr) ();
TEST_F(JITTest, NoStubs) {
More information about the llvm-commits
mailing list