intel: fix gen_sort_tags.py
authorEric Engestrom <eric@engestrom.ch>
Fri, 5 Jun 2020 09:26:56 +0000 (11:26 +0200)
committerMarge Bot <eric+marge@anholt.net>
Fri, 5 Jun 2020 14:31:13 +0000 (14:31 +0000)
commit981d07c74a1611d8c308a96f59899fff66674c1a
treec7802a756d3908466b49e36b7c3540a358884c8a
parentbfff330f061ff8789d7d26f164725af91cfd2c74
intel: fix gen_sort_tags.py

The script was failing for me (python 3.8), not sure if this is a recent
python version break or not as I don't know how often people have been
running this script:

    Processing ./gen9.xml... Traceback (most recent call last):
      File "./gen_sort_tags.py", line 177, in <module>
        main()
      File "./gen_sort_tags.py", line 170, in main
        genxml[:] = enums + sorted_structs.values() + instructions + registers
    TypeError: can only concatenate list (not "odict_values") to list

Turning the odict into a list fixes it for me, and the resulting xml
file are identical to before :)

Fixes: 903e142f0d35bc550ffd ("genxml: add a sorting script")
Signed-off-by: Eric Engestrom <eric@engestrom.ch>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5352>
src/intel/genxml/gen_sort_tags.py