summaryrefslogtreecommitdiffstats
path: root/src/compiler/nir
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2016-07-29 01:29:11 -0700
committerKenneth Graunke <kenneth@whitecape.org>2016-08-04 00:41:07 -0700
commit7603b4d3a182fe5d756ac9d7196134aa5c43dbea (patch)
treefea036133a5e83cd576635a68b9d487aec7ea77b /src/compiler/nir
parent6aa730000fea84a14b49828a4bb30761d43903bf (diff)
downloadexternal_mesa3d-7603b4d3a182fe5d756ac9d7196134aa5c43dbea.tar.gz
external_mesa3d-7603b4d3a182fe5d756ac9d7196134aa5c43dbea.tar.bz2
external_mesa3d-7603b4d3a182fe5d756ac9d7196134aa5c43dbea.zip
nir: Make nir_alu_srcs_equal non-static.
Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Iago Toral Quiroga <itoral@igalia.com>
Diffstat (limited to 'src/compiler/nir')
-rw-r--r--src/compiler/nir/nir.h3
-rw-r--r--src/compiler/nir/nir_instr_set.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/src/compiler/nir/nir.h b/src/compiler/nir/nir.h
index 65ecd3369d..9ce5be2176 100644
--- a/src/compiler/nir/nir.h
+++ b/src/compiler/nir/nir.h
@@ -785,6 +785,9 @@ nir_ssa_alu_instr_src_components(const nir_alu_instr *instr, unsigned src)
return instr->dest.dest.ssa.num_components;
}
+bool nir_alu_srcs_equal(const nir_alu_instr *alu1, const nir_alu_instr *alu2,
+ unsigned src1, unsigned src2);
+
typedef enum {
nir_deref_type_var,
nir_deref_type_array,
diff --git a/src/compiler/nir/nir_instr_set.c b/src/compiler/nir/nir_instr_set.c
index 45f42bf25e..9cb9ed43e8 100644
--- a/src/compiler/nir/nir_instr_set.c
+++ b/src/compiler/nir/nir_instr_set.c
@@ -228,7 +228,7 @@ nir_srcs_equal(nir_src src1, nir_src src2)
}
}
-static bool
+bool
nir_alu_srcs_equal(const nir_alu_instr *alu1, const nir_alu_instr *alu2,
unsigned src1, unsigned src2)
{