[llvm] [AArch64] AArch64ISelDAGToDAG.cpp - disable inlining on MSVC release builds (PR #115292)
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Thu Nov 7 03:33:16 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:
Yes - clang-cl defines the _MSC_VER macro as well as __clang__ :https://clang.godbolt.org/z/fo9aMYosK
https://github.com/llvm/llvm-project/pull/115292
More information about the llvm-commits
mailing list