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:
@@ -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,")
|
||||
|
||||
Reference in New Issue
Block a user