mirror of
https://github.com/python/cpython.git
synced 2025-10-21 22:22:48 +00:00
GH-115869: Make jit_stencils.h reproducible (GH-127166)
This commit is contained in:
parent
307c633586
commit
17c16aea66
5 changed files with 18 additions and 9 deletions
|
@ -77,6 +77,6 @@ def dump(
|
|||
groups: dict[str, _stencils.StencilGroup], symbols: dict[str, int]
|
||||
) -> typing.Iterator[str]:
|
||||
"""Yield a JIT compiler line-by-line as a C header file."""
|
||||
for opname, group in sorted(groups.items()):
|
||||
for opname, group in groups.items():
|
||||
yield from _dump_stencil(opname, group)
|
||||
yield from _dump_footer(groups, symbols)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue