summaryrefslogtreecommitdiffstats
path: root/llvm/unittests/ExecutionEngine/JIT/MultiJITTest.cpp
diff options
context:
space:
mode:
authorUlrich Weigand <ulrich.weigand@de.ibm.com>2013-05-06 16:21:50 +0000
committerUlrich Weigand <ulrich.weigand@de.ibm.com>2013-05-06 16:21:50 +0000
commit80435baa146e9218c46beb4b4ea3961aefd8d950 (patch)
treeb1961cc4bd917140cf449046ba6568c1ef81dca3 /llvm/unittests/ExecutionEngine/JIT/MultiJITTest.cpp
parent982a21510e1b77c5ba4a5506f80671350d0d63ae (diff)
downloadbcm5719-llvm-80435baa146e9218c46beb4b4ea3961aefd8d950.tar.gz
bcm5719-llvm-80435baa146e9218c46beb4b4ea3961aefd8d950.zip
[SystemZ] Set up JIT/MCJIT test cases
This patch adds the necessary configuration bits and #ifdef's to set up the JIT/MCJIT test cases for SystemZ. Like other recent targets, we do fully support MCJIT, but do not support the old JIT at all. Set up the lit config files accordingly, and disable old-JIT unit tests. Patch by Richard Sandiford. llvm-svn: 181207
Diffstat (limited to 'llvm/unittests/ExecutionEngine/JIT/MultiJITTest.cpp')
-rw-r--r--llvm/unittests/ExecutionEngine/JIT/MultiJITTest.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/unittests/ExecutionEngine/JIT/MultiJITTest.cpp b/llvm/unittests/ExecutionEngine/JIT/MultiJITTest.cpp
index b3e992639db..4018cd5ce2f 100644
--- a/llvm/unittests/ExecutionEngine/JIT/MultiJITTest.cpp
+++ b/llvm/unittests/ExecutionEngine/JIT/MultiJITTest.cpp
@@ -20,8 +20,8 @@ using namespace llvm;
namespace {
-// ARM and PowerPC tests disabled pending fix for PR10783.
-#if !defined(__arm__) && !defined(__powerpc__)
+// ARM, PowerPC and SystemZ tests disabled pending fix for PR10783.
+#if !defined(__arm__) && !defined(__powerpc__) && !defined(__s390__)
bool LoadAssemblyInto(Module *M, const char *assembly) {
SMDiagnostic Error;
@@ -176,6 +176,6 @@ TEST(MultiJitTest, JitPool) {
#endif
EXPECT_TRUE(sa == fa);
}
-#endif // !defined(__arm__) && !defined(__powerpc__)
+#endif // !defined(__arm__) && !defined(__powerpc__) && !defined(__s390__)
} // anonymous namespace
OpenPOWER on IntegriCloud