aboutsummaryrefslogtreecommitdiffstats
path: root/src/panfrost/bifrost/bi_print.c
diff options
context:
space:
mode:
authorAlyssa Rosenzweig <[email protected]>2020-03-10 08:03:20 -0400
committerMarge Bot <[email protected]>2020-03-10 19:25:59 +0000
commit55f0d811e4aeba74842c8a86e02889ae3e86c994 (patch)
tree1031b88feea8826467e986e3a2be9a1088e47aad /src/panfrost/bifrost/bi_print.c
parentacab788578cd1ccd67b042798786a39394ad5f03 (diff)
pan/bi: Add isub op
Can't be a regular ADD since there's no negate modifier for integers (it's a different opcode entirely). Signed-off-by: Alyssa Rosenzweig <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4139>
Diffstat (limited to 'src/panfrost/bifrost/bi_print.c')
-rw-r--r--src/panfrost/bifrost/bi_print.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/panfrost/bifrost/bi_print.c b/src/panfrost/bifrost/bi_print.c
index daccf91a98f..06b4a034cfc 100644
--- a/src/panfrost/bifrost/bi_print.c
+++ b/src/panfrost/bifrost/bi_print.c
@@ -120,6 +120,7 @@ bi_class_name(enum bi_class cl)
case BI_DISCARD: return "discard";
case BI_FMA: return "fma";
case BI_FREXP: return "frexp";
+ case BI_ISUB: return "isub";
case BI_LOAD: return "load";
case BI_LOAD_UNIFORM: return "load_uniform";
case BI_LOAD_ATTR: return "load_attr";