From: Brian Paul Date: Sat, 23 Nov 2019 02:42:34 +0000 (-0700) Subject: nir: no-op C99 _Pragma() with MSVC X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a2689ebcd68ccf9b3bcbf9bae926c70beccd6a11;p=mesa.git nir: no-op C99 _Pragma() with MSVC This fixes a build failure on MSVC. BTW, it looks like clang supports _Pragma() but I don't know if it understands the "gcc unroll N" directive. Signed-off-by: Brian Paul Reviewed-by: Ian Romanick --- diff --git a/src/compiler/nir/nir_range_analysis.c b/src/compiler/nir/nir_range_analysis.c index df5d4dab9af..d38bcc0b040 100644 --- a/src/compiler/nir/nir_range_analysis.c +++ b/src/compiler/nir/nir_range_analysis.c @@ -218,6 +218,13 @@ analyze_constant(const struct nir_alu_instr *instr, unsigned src, */ #define _______ unknown + +/* MSVC doesn't have C99's _Pragma() */ +#ifdef _MSC_VER +#define _Pragma(x) +#endif + + #ifndef NDEBUG #define ASSERT_TABLE_IS_COMMUTATIVE(t) \ do { \