summaryrefslogtreecommitdiffstats
path: root/Tools/jit/_writer.py
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/jit/_writer.py')
-rw-r--r--Tools/jit/_writer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/jit/_writer.py b/Tools/jit/_writer.py
index 81a9f08..5588784 100644
--- a/Tools/jit/_writer.py
+++ b/Tools/jit/_writer.py
@@ -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)