compiler: replace MAYBE_UNUSED with UNUSED

MAYBE_UNUSED is going away, so let's replace legitimate uses of it with
UNUSED, which the former aliased to so far anyway.

Signed-off-by: Eric Engestrom <eric.engestrom@intel.com>
Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
Eric Engestrom
2019-06-22 15:21:44 +01:00
parent bac5760e7b
commit 5febd4d575
5 changed files with 6 additions and 6 deletions

View File

@@ -549,7 +549,7 @@ construct_value(nir_builder *build,
}
}
MAYBE_UNUSED static void dump_value(const nir_search_value *val)
UNUSED static void dump_value(const nir_search_value *val)
{
switch (val->type) {
case nir_search_value_constant: {