aboutsummaryrefslogtreecommitdiffstats
path: root/src/compiler/nir/nir_search.c
diff options
context:
space:
mode:
authorEric Engestrom <[email protected]>2019-06-22 15:21:44 +0100
committerEric Engestrom <[email protected]>2019-07-31 09:41:05 +0100
commit5febd4d575393fbd7b42db4446f064f4054416a4 (patch)
treedf70bdaa39e31e9ea9a3df2f113a1d28761ff487 /src/compiler/nir/nir_search.c
parentbac5760e7b6249db9405142a175b1be6597a4ea0 (diff)
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 <[email protected]> Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/compiler/nir/nir_search.c')
-rw-r--r--src/compiler/nir/nir_search.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/nir/nir_search.c b/src/compiler/nir/nir_search.c
index c62de4ad7fe..437f2bf39a7 100644
--- a/src/compiler/nir/nir_search.c
+++ b/src/compiler/nir/nir_search.c
@@ -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: {