diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-05-06 11:21:10 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-05-06 11:50:47 -0600 |
commit | fdc090bb2ee51f0f6e8a10d152ac0df22784c2ac (patch) | |
tree | 04f19cbd7107f1a6d8e2267671e1923d4566243f /build-aux/measurestack/util.py | |
parent | 1cf085ae086a43f18af550fdcfd4d3e57ccb0918 (diff) | |
parent | 6c755aadeb3ffff941667c70a93ef0e7cdd41a98 (diff) |
Merge branch 'lukeshu/measurestack-fixes-round1'
Diffstat (limited to 'build-aux/measurestack/util.py')
-rw-r--r-- | build-aux/measurestack/util.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build-aux/measurestack/util.py b/build-aux/measurestack/util.py index 47b2617..0af3d02 100644 --- a/build-aux/measurestack/util.py +++ b/build-aux/measurestack/util.py @@ -7,7 +7,7 @@ import re import typing from . import analyze, vcg -from .analyze import BaseName, Node, QName +from .analyze import BaseName, Node, QName, maybe_sorted # pylint: disable=unused-variable __all__ = [ @@ -32,7 +32,7 @@ def synthetic_node( n.nstatic = nstatic n.ndynamic = 0 - n.calls = dict((QName(c), False) for c in calls) + n.calls = dict((QName(c), False) for c in maybe_sorted(calls)) return n |