Skip to content

Commit bcade5b

Browse files
authored
Merge pull request #29382 from eeckstein/analyze_code_size
utils: change handling of generic specializations in analyze_code_size.py
2 parents 0d7820c + b5e2e02 commit bcade5b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

utils/analyze_code_size.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,12 @@ def __init__(self):
8787
self.category_matching = [
8888
['Objective-C function', re.compile(r'.*[+-]\[')],
8989
['C++', re.compile(r'_+swift')],
90+
['Generic specialization of stdlib', re.compile(r'.*generic specialization.* of Swift\.')],
91+
['Generic specialization', re.compile(r'.*generic specialization')],
9092
['Merged function', re.compile(r'merged ')],
9193
['Key path', re.compile(r'key path')],
9294
['Function signature specialization',
9395
re.compile(r'function signature specialization')],
94-
['Generic specialization', re.compile(r'generic specialization')],
9596
['Reabstraction thunk helper',
9697
re.compile(r'reabstraction thunk helper')],
9798
['vtable thunk', re.compile(r'vtable thunk for')],

0 commit comments

Comments
 (0)