[AST] Dont invalidate a ref-type var decl if it has no initializer.

This would allow more AST nodes being preserved for broken code, and
have a more consistent valid bit for ref-type var decl (currently, a
ref-type var decl with a broken initializer is valid).

Per https://reviews.llvm.org/D76831#1973053, the initializer of a variable
should play no part in its "invalid" bit.

Reviewed By: sammccall

Differential Revision: https://reviews.llvm.org/D122935
This commit is contained in:
Haojian Wu 2022-05-25 14:58:28 +02:00
parent 788463e72a
commit c673d67bc7
2 changed files with 2 additions and 3 deletions

View File

@ -13199,7 +13199,6 @@ void Sema::ActOnUninitializedDecl(Decl *RealDecl) {
if (Type->isReferenceType()) {
Diag(Var->getLocation(), diag::err_reference_var_requires_init)
<< Var << SourceRange(Var->getLocation(), Var->getLocation());
Var->setInvalidDecl();
return;
}

View File

@ -12,10 +12,10 @@ void test() {
const A a2;
// CHECK: `-VarDecl {{.*}} a3 'A'
A a3 = garbage();
// CHECK: `-VarDecl {{.*}} a4 'const A &'
const A& a4;
// CHECK: `-VarDecl {{.*}} invalid b1 'const A &'
const A& b1;
// CHECK: `-VarDecl {{.*}} invalid b2 'ForwardDecl'
ForwardDecl b2;
// CHECK: `-VarDecl {{.*}} invalid b3 'auto'