[clang] Turn CLANG_INTERPRETER_PLATFORM_CANNOT_CREATE_LLJIT on for zos as well (PR #87797)

via cfe-commits cfe-commits at lists.llvm.org
Fri Apr 5 08:46:42 PDT 2024


https://github.com/bahareh-farhadi created https://github.com/llvm/llvm-project/pull/87797

None

>From 3bf9afb2b701ccfcde844dec5e5a0a44213e4f39 Mon Sep 17 00:00:00 2001
From: Bahareh <bahareh.farhadi at ibm.com>
Date: Thu, 28 Mar 2024 14:47:21 -0500
Subject: [PATCH] Turn CLANG_INTERPRETER_PLATFORM_CANNOT_CREATE_LLJIT on for
 zos as well

---
 clang/unittests/Interpreter/InterpreterExtensionsTest.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/clang/unittests/Interpreter/InterpreterExtensionsTest.cpp b/clang/unittests/Interpreter/InterpreterExtensionsTest.cpp
index 1ba865a79ed778..b971cd550dc507 100644
--- a/clang/unittests/Interpreter/InterpreterExtensionsTest.cpp
+++ b/clang/unittests/Interpreter/InterpreterExtensionsTest.cpp
@@ -30,7 +30,7 @@
 
 #include <system_error>
 
-#if defined(_AIX)
+#if defined(_AIX) || defined(__MVS__)
 #define CLANG_INTERPRETER_PLATFORM_CANNOT_CREATE_LLJIT
 #endif
 



More information about the cfe-commits mailing list