From: Eric Anholt Date: Sat, 6 Aug 2016 06:45:37 +0000 (-0700) Subject: nir: Move the undef of nir_intrinsics.h macros to the .h. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=24728637e2c006012e4c0a3d87629b53beaddd3b;p=mesa.git nir: Move the undef of nir_intrinsics.h macros to the .h. I wanted to include this from nir_builder as well, so it also needed the undefs. Reviewed-by: Kenneth Graunke --- diff --git a/src/compiler/nir/nir.h b/src/compiler/nir/nir.h index 9ce5be2176d..e09cf3b8109 100644 --- a/src/compiler/nir/nir.h +++ b/src/compiler/nir/nir.h @@ -868,9 +868,6 @@ typedef enum { nir_num_intrinsics = nir_last_intrinsic + 1 } nir_intrinsic_op; -#undef INTRINSIC -#undef LAST_INTRINSIC - #define NIR_INTRINSIC_MAX_CONST_INDEX 3 /** Represents an intrinsic diff --git a/src/compiler/nir/nir_intrinsics.h b/src/compiler/nir/nir_intrinsics.h index 42c770f1594..d0f7f5db833 100644 --- a/src/compiler/nir/nir_intrinsics.h +++ b/src/compiler/nir/nir_intrinsics.h @@ -405,3 +405,6 @@ STORE(ssbo, 3, 1, WRMASK, xx, xx, 0) STORE(shared, 2, 2, BASE, WRMASK, xx, 0) LAST_INTRINSIC(store_shared) + +#undef INTRINSIC +#undef LAST_INTRINSIC