aboutsummaryrefslogtreecommitdiffstats
path: root/src/panfrost/bifrost/bifrost_compile.c
diff options
context:
space:
mode:
authorAlyssa Rosenzweig <[email protected]>2020-05-04 14:00:13 -0400
committerMarge Bot <[email protected]>2020-05-04 18:45:15 +0000
commit1a94daef589be2e95b12d30733d45b9ffeaad436 (patch)
treea887580c0ed5b869ff60720190d93c14cdd8cedd /src/panfrost/bifrost/bifrost_compile.c
parent5c81f51c3c7fb7aa86cee3d9ba4324b1610c726d (diff)
pan/bi: Rename BI_ISUB to BI_IMATH
We'll use this for iadd, etc too which share similar characteristics. Signed-off-by: Alyssa Rosenzweig <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4890>
Diffstat (limited to 'src/panfrost/bifrost/bifrost_compile.c')
-rw-r--r--src/panfrost/bifrost/bifrost_compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/panfrost/bifrost/bifrost_compile.c b/src/panfrost/bifrost/bifrost_compile.c
index 056d44718b3..6a3a15932f4 100644
--- a/src/panfrost/bifrost/bifrost_compile.c
+++ b/src/panfrost/bifrost/bifrost_compile.c
@@ -503,7 +503,7 @@ bi_class_for_nir_alu(nir_op op)
case nir_op_fsub:
return BI_ADD;
case nir_op_isub:
- return BI_ISUB;
+ return BI_IMATH;
case nir_op_iand:
case nir_op_ior: