mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 17:30:12 +01:00
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 <ben@bwidawsk.net>
Reviewed-by: Anuj Phogat <anuj.phogat@gmail.com>
This commit is contained in:
parent
4ccf8c952a
commit
8314dd7ff2
2 changed files with 10 additions and 2 deletions
|
|
@ -59,8 +59,8 @@ isl_device_init(struct isl_device *dev,
|
|||
* device properties at buildtime. Verify that the macros with the device
|
||||
* properties chosen during runtime.
|
||||
*/
|
||||
assert(ISL_DEV_GEN(dev) == dev->info->gen);
|
||||
assert(ISL_DEV_USE_SEPARATE_STENCIL(dev) == dev->use_separate_stencil);
|
||||
ISL_DEV_GEN_SANITIZE(dev);
|
||||
ISL_DEV_USE_SEPARATE_STENCIL_SANITIZE(dev);
|
||||
|
||||
/* Did we break hiz or stencil? */
|
||||
if (ISL_DEV_USE_SEPARATE_STENCIL(dev))
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue