[PATCH] D142431: [extract_symbols.py] Filter out more symbols for MSVC
Mike Hommey via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Jan 24 13:59:28 PST 2023
glandium planned changes to this revision.
glandium added inline comments.
================
Comment at: llvm/utils/extract_symbols.py:186
return None
+ # Skip private symbols, which plugins wouldn't be able to use.
+ elif is_private(symbol):
----------------
Actually... they are, and they do :(
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D142431/new/
https://reviews.llvm.org/D142431
More information about the llvm-commits
mailing list