mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1183487 - Fix sorting in check_macroassembler_style.py. r=nbp
This commit is contained in:
parent
4d6ac1199d
commit
f3e5bd5418
@ -194,7 +194,7 @@ def append_signatures(d, sigs):
|
||||
def generate_file_content(signatures):
|
||||
output = []
|
||||
for s in sorted(signatures.keys()):
|
||||
archs = set(signatures[s])
|
||||
archs = set(sorted(signatures[s]))
|
||||
if len(archs.symmetric_difference(architecture_independent)) == 0:
|
||||
output.append(s + ';\n')
|
||||
if s.startswith('inline'):
|
||||
|
Loading…
Reference in New Issue
Block a user