[llvm] [AArch64] AArch64ISelDAGToDAG.cpp - disable inlining on MSVC release builds (PR #115292)

Sander de Smalen via llvm-commits llvm-commits at lists.llvm.org
Thu Nov 7 03:13:36 PST 2024


================
@@ -31,6 +31,11 @@ using namespace llvm;
 #define DEBUG_TYPE "aarch64-isel"
 #define PASS_NAME "AArch64 Instruction Selection"
 
+// https://github.com/llvm/llvm-project/issues/114425
+#if defined(_WIN32) && !defined(__clang__) && !defined(NDEBUG)
----------------
sdesmalen-arm wrote:

Should this test for MSVC specifically, rather than `!defined(__clang__)` ?

https://github.com/llvm/llvm-project/pull/115292


More information about the llvm-commits mailing list