diff options
author | Alyssa Rosenzweig <[email protected]> | 2020-05-04 14:00:13 -0400 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-05-04 18:45:15 +0000 |
commit | 1a94daef589be2e95b12d30733d45b9ffeaad436 (patch) | |
tree | a887580c0ed5b869ff60720190d93c14cdd8cedd /src/panfrost/bifrost/bi_print.c | |
parent | 5c81f51c3c7fb7aa86cee3d9ba4324b1610c726d (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/bi_print.c')
-rw-r--r-- | src/panfrost/bifrost/bi_print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/panfrost/bifrost/bi_print.c b/src/panfrost/bifrost/bi_print.c index 151e2fe6c2d..066b96c41c4 100644 --- a/src/panfrost/bifrost/bi_print.c +++ b/src/panfrost/bifrost/bi_print.c @@ -140,7 +140,7 @@ bi_class_name(enum bi_class cl) case BI_FMA: return "fma"; case BI_FMOV: return "fmov"; case BI_FREXP: return "frexp"; - case BI_ISUB: return "isub"; + case BI_IMATH: return "imath"; case BI_LOAD: return "load"; case BI_LOAD_UNIFORM: return "load_uniform"; case BI_LOAD_ATTR: return "load_attr"; |