From 9586feff54d024518d7cc83712f741cbc559a251 Mon Sep 17 00:00:00 2001 From: James Park Date: Sat, 23 Oct 2021 18:02:48 -0700 Subject: aco: Work around MSVC restrict in c99_compat.h Future LLVM header leads to __declspec(__restrict), which is invalid. Just undefine the restrict macro to keep __declspec(restrict). Reviewed-by: Bas Nieuwenhuizen Part-of: (cherry picked from commit e0de7aa4d7717bbd79bbc5bfc660f941f680402b) --- .pick_status.json | 2 +- src/amd/compiler/aco_print_asm.cpp | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.pick_status.json b/.pick_status.json index 666a3b17de9..531e72e2900 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -1894,7 +1894,7 @@ "description": "aco: Work around MSVC restrict in c99_compat.h", "nominated": false, "nomination_type": null, - "resolution": 4, + "resolution": 1, "main_sha": null, "because_sha": null }, diff --git a/src/amd/compiler/aco_print_asm.cpp b/src/amd/compiler/aco_print_asm.cpp index 9f15de5aacd..cbd29e13212 100644 --- a/src/amd/compiler/aco_print_asm.cpp +++ b/src/amd/compiler/aco_print_asm.cpp @@ -25,6 +25,9 @@ #include "aco_ir.h" #ifdef LLVM_AVAILABLE +#if defined(_MSC_VER) && defined(restrict) +#undef restrict +#endif #include "llvm/ac_llvm_util.h" #include "llvm-c/Disassembler.h" -- cgit v1.2.3