diff options
author | Ben Widawsky <[email protected]> | 2016-05-26 21:59:17 -0700 |
---|---|---|
committer | Ben Widawsky <[email protected]> | 2016-05-26 21:59:17 -0700 |
commit | 8314dd7ff2c4719ffb64b202cf5fdd0e38ad276e (patch) | |
tree | 913c4fadf99700600baf2d74486845a1c156edb5 /src/intel/isl/isl.h | |
parent | 4ccf8c952abb471f94d6f40786d896723f94c0ea (diff) |
isl: Fix some tautological-compare warnings
Fixes:
isl.c:62:22: warning: self-comparison always evaluates to true [-Wtautological-compare]
assert(ISL_DEV_GEN(dev) == dev->info->gen);
^~
isl.c:63:33: warning: self-comparison always evaluates to true [-Wtautological-compare]
assert(ISL_DEV_USE_SEPARATE_STENCIL(dev) == dev->use_separate_stencil);
Signed-off-by: Ben Widawsky <[email protected]>
Reviewed-by: Anuj Phogat <[email protected]>
Diffstat (limited to 'src/intel/isl/isl.h')
-rw-r--r-- | src/intel/isl/isl.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/intel/isl/isl.h b/src/intel/isl/isl.h index daa5428f9f3..ef862282a2a 100644 --- a/src/intel/isl/isl.h +++ b/src/intel/isl/isl.h @@ -59,6 +59,10 @@ struct brw_image_param; * `gcc -DISL_DEV_GEN(dev)=9 ...`. */ #define ISL_DEV_GEN(__dev) ((__dev)->info->gen) +#define ISL_DEV_GEN_SANITIZE(__dev) +#else +#define ISL_DEV_GEN_SANITIZE(__dev) \ + (assert(ISL_DEV_GEN(__dev) == (__dev)->info->gen)) #endif #ifndef ISL_DEV_IS_HASWELL @@ -77,6 +81,10 @@ struct brw_image_param; * `gcc -DISL_DEV_USE_SEPARATE_STENCIL(dev)=1 ...`. */ #define ISL_DEV_USE_SEPARATE_STENCIL(__dev) ((__dev)->use_separate_stencil) +#define ISL_DEV_USE_SEPARATE_STENCIL_SANITIZE(__dev) +#else +#define ISL_DEV_USE_SEPARATE_STENCIL_SANITIZE(__dev) \ + (assert(ISL_DEV_USE_SEPARATE_STENCIL(__dev) == (__dev)->use_separate_stencil)) #endif /** |