================
@@ -3138,6 +3138,11 @@ FunctionDecl::DefaultedOrDeletedFunctionInfo::Create(
void FunctionDecl::setDefaultedOrDeletedInfo(
DefaultedOrDeletedFunctionInfo *Info) {
assert(!FunctionDeclBits.HasDefaultedOrDeletedInfo && "already have this");
+
+ // Guard against assertions tripping during error-recovery states
+ if (isInvalidDecl() || Body)
----------------
Sirraide wrote:
Yeah, I don’t believe this function is the right place to do this; we shouldn’t
be calling `setDefaultedOrDeletedInfo()` to begin with if there’s already a
body I think
https://github.com/llvm/llvm-project/pull/210668
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits