[PATCH] D96919: [clang] Emit type metadata on available_externally vtables for WPD

David Li via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Fri Feb 19 11:01:50 PST 2021


davidxl added inline comments.


================
Comment at: clang/lib/CodeGen/ItaniumCXXABI.cpp:1781
+    // analysis.
+    if (VTable->isDeclarationForLinker())
+      CGM.addCompilerUsedGlobal(VTable);
----------------
Is it better to guard it with with if (CGM.getCodeGenOpts().WholeProgramVTables)  which seems clearer in intention?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D96919/new/

https://reviews.llvm.org/D96919



More information about the cfe-commits mailing list