forked from OSchip/llvm-project
ae1a699554
heap.py has a lot of large hand written expressions and each name in the expression will be looked up by clang during expression parsing. For function parameters this will be in Sema::ActOnParamDeclarator(...) in order to catch redeclarations of parameters. The names are not needed and we have seen some rare cases where since we don't have symbols we end up in SymbolContext::FindBestGlobalDataSymbol(...) which may conflict with other global symbols. There may be a way to make this lookup smarter to avoid these cases but it is not clear how well tested this path is and how much work it would be to fix it. So we will go with this fix while we investigate more. Ref: rdar://78265641 |
||
---|---|---|
.. | ||
customization | ||
darwin/heap_find | ||
functions | ||
interposing/darwin/fd_interposing | ||
lookup | ||
plugins/commands | ||
python | ||
scripting | ||
summaries | ||
synthetic | ||
test |