[clang] WIP: [clang] MicrosoftCXXABI: Fix exception copy constructor LUT after loading AST (PR #114075)

Reid Kleckner via cfe-commits cfe-commits at lists.llvm.org
Wed Jan 22 16:01:46 PST 2025


================
@@ -249,6 +249,11 @@ FIELD(HasDeclaredCopyAssignmentWithConstParam, 1, MERGE_OR)
 /// base classes or fields have a no-return destructor
 FIELD(IsAnyDestructorNoReturn, 1, NO_MERGE)
 
+/// Microsoft CXX ABI specific:
+/// Whether the copy constructor is used by a `throw` expression.
+/// Used by ASTReader to restore the sidecar RecordToCopyCtor LUT.
----------------
rnk wrote:

I don't think "LUT" is widely understood to be an abbreviation of Lookup table, so I would spell this out if you need it.

https://github.com/llvm/llvm-project/pull/114075


More information about the cfe-commits mailing list