freedreno/registers: Fix designator order

C++ is picky about order matching for some reason.

Signed-off-by: Rob Clark <robdclark@chromium.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21846>
This commit is contained in:
Rob Clark
2022-07-29 11:44:16 -07:00
committed by Marge Bot
parent 4a528e8f5f
commit fadf76b938
+1 -1
View File
@@ -188,8 +188,8 @@ class Bitset(object):
print(" fields.unknown | fields.%s," % (value_name,))
if address:
print(" .is_address = true,")
print(" .bo = fields.bo,")
print(" .is_address = true,")
if f.type == "waddress":
print(" .bo_write = true,")
print(" .bo_offset = fields.bo_offset,")