aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRob Clark <[email protected]>2020-03-10 16:07:40 -0700
committerMarge Bot <[email protected]>2020-06-16 20:56:15 +0000
commita69d28769a01c78895ebfe3a5d3213db9644c2f7 (patch)
tree4592c4a208e2090c86b103484616d710882b03d9
parentcd376a143461a4ed16ebd58de046f89da4113ff7 (diff)
freedreno/ir3/print: print (r) flag
Signed-off-by: Rob Clark <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5280>
-rw-r--r--src/freedreno/ir3/ir3_print.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/freedreno/ir3/ir3_print.c b/src/freedreno/ir3/ir3_print.c
index dcdf9791b6a..458e3d9a713 100644
--- a/src/freedreno/ir3/ir3_print.c
+++ b/src/freedreno/ir3/ir3_print.c
@@ -170,6 +170,9 @@ static void print_reg_name(struct ir3_register *reg)
else if (reg->flags & (IR3_REG_FABS | IR3_REG_SABS))
printf("(abs)");
+ if (reg->flags & IR3_REG_R)
+ printf("(r)");
+
if (reg->flags & IR3_REG_HIGH)
printf("H");
if (reg->flags & IR3_REG_HALF)