[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:27:09 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:
Just to make sure I understand, does the clang-cl driver define the MSVC macro for compatibility reasons such that checking for MSVC here doesn't mean it's actually the MSVC compiler?
https://github.com/llvm/llvm-project/pull/115292
    
    
More information about the llvm-commits
mailing list