Mesa (main): aco: Work around MSVC restrict in c99_compat.h

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Wed Nov 10 17:21:10 UTC 2021


Module: Mesa
Branch: main
Commit: e0de7aa4d7717bbd79bbc5bfc660f941f680402b
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=e0de7aa4d7717bbd79bbc5bfc660f941f680402b

Author: James Park <jpark37 at lagfreegames.com>
Date:   Sat Oct 23 18:02:48 2021 -0700

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 <bas at basnieuwenhuizen.nl>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13505>

---

 src/amd/compiler/aco_print_asm.cpp | 3 +++
 1 file changed, 3 insertions(+)

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"



More information about the mesa-commit mailing list