diff options
author | Ian Romanick <[email protected]> | 2019-01-24 14:37:16 -0800 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2019-02-08 10:37:06 -0800 |
commit | 78169870e416fde51946f8295fa6e1c652305447 (patch) | |
tree | 2c6e0711f3dc6a2e282040f7fe72b1fc9bc96a18 /src/compiler | |
parent | 3dc5faf5239828780ee31d711fda50360b6d4a00 (diff) |
nir: Silence zillions of unused parameter warnings in release builds
Fixes: cd56d79b59f "nir: check NIR_SKIP to skip passes by name"
Reviewed-by: Caio Marcelo de Oliveira Filho <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/compiler')
-rw-r--r-- | src/compiler/nir/nir.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/nir/nir.h b/src/compiler/nir/nir.h index ff2c41faf27..8e0d285e2f2 100644 --- a/src/compiler/nir/nir.h +++ b/src/compiler/nir/nir.h @@ -2825,7 +2825,7 @@ should_print_nir(void) static inline void nir_validate_shader(nir_shader *shader, const char *when) { (void) shader; (void)when; } static inline void nir_metadata_set_validation_flag(nir_shader *shader) { (void) shader; } static inline void nir_metadata_check_validation_flag(nir_shader *shader) { (void) shader; } -static inline bool should_skip_nir(const char *pass_name) { return false; } +static inline bool should_skip_nir(UNUSED const char *pass_name) { return false; } static inline bool should_clone_nir(void) { return false; } static inline bool should_serialize_deserialize_nir(void) { return false; } static inline bool should_print_nir(void) { return false; } |