[llvm] [AArch64] AArch64ISelDAGToDAG.cpp - disable inlining on MSVC release builds (PR #115292)
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Mon Nov 18 08:26:52 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)
----------------
RKSimon wrote:
I'll create a patch
https://github.com/llvm/llvm-project/pull/115292
More information about the llvm-commits
mailing list