Bug 1829245 - Fix spidermonkey linux64/debug bustages r=rix CLOSED TREE

This commit is contained in:
Cristian Tuns 2023-04-26 00:28:23 -04:00
Родитель 0f8fb663a1
Коммит 56b2c76d14
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -113,7 +113,7 @@ def main():
# js/src/libjs_static.a:Utility.o: U malloc
# js/src/libjs_static.a:Utility.o: 00000000000007e0 T js::SetSourceOptions(...)
#
nm_line_re = re.compile(r"([^:/ ]+):\s+[0-9a-fA-F]*\s+([TU]) (.*)")
nm_line_re = re.compile(r"([^:/ ]+):\s*[0-9a-fA-F]*\s+([TU]) (.*)")
alloc_fns_re = re.compile(r"|".join(alloc_fns))
# This tracks which allocation/free functions have been seen.