From: Haojian Wu Date: Tue, 21 Jul 2020 07:36:49 +0000 (+0200) Subject: [AST][RecoveryExpr] Preserve the invalid "undef_var" initializer. X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=7af852dcbff9a4d5034e6deaadb7b630c548c6fa;p=android-x86%2Fexternal-llvm-project.git [AST][RecoveryExpr] Preserve the invalid "undef_var" initializer. And don't invalidate the VarDecl if the type is known. Reviewed By: sammccall Differential Revision: https://reviews.llvm.org/D81395 --- diff --git a/clang/lib/Sema/SemaDecl.cpp b/clang/lib/Sema/SemaDecl.cpp index 3413a420430..406c9c71256 100644 --- a/clang/lib/Sema/SemaDecl.cpp +++ b/clang/lib/Sema/SemaDecl.cpp @@ -12039,7 +12039,7 @@ void Sema::AddInitializerToDecl(Decl *RealDecl, Expr *Init, bool DirectInit) { // Try to correct any TypoExprs in the initialization arguments. for (size_t Idx = 0; Idx < Args.size(); ++Idx) { ExprResult Res = CorrectDelayedTyposInExpr( - Args[Idx], VDecl, /*RecoverUncorrectedTypos=*/false, + Args[Idx], VDecl, /*RecoverUncorrectedTypos=*/true, [this, Entity, Kind](Expr *E) { InitializationSequence Init(*this, Entity, Kind, MultiExprArg(E)); return Init.Failed() ? ExprError() : E; diff --git a/clang/test/AST/ast-dump-recovery.cpp b/clang/test/AST/ast-dump-recovery.cpp index 4d11bb29d5b..fd7c923b7e5 100644 --- a/clang/test/AST/ast-dump-recovery.cpp +++ b/clang/test/AST/ast-dump-recovery.cpp @@ -24,8 +24,11 @@ void test_invalid_call(int s) { // CHECK-NEXT: |-UnresolvedLookupExpr {{.*}} 'some_func' // CHECK-NEXT: `-RecoveryExpr {{.*}} contains-errors s = some_func(undef1); - // CHECK: `-VarDecl {{.*}} invalid var 'int' - // FIXME: preserve the broken call. + + // CHECK: VarDecl {{.*}} var 'int' + // CHECK-NEXT: `-CallExpr {{.*}} '' contains-errors + // CHECK-NEXT: |-UnresolvedLookupExpr {{.*}} 'some_func' + // CHECK-NEXT: `-RecoveryExpr {{.*}} contains-errors int var = some_func(undef1); } @@ -178,9 +181,15 @@ void InvalidInitalizer(int x) { // CHECK-NEXT: `-UnresolvedLookupExpr {{.*}} 'invalid' Bar b6 = Bar{invalid()}; - // CHECK: `-RecoveryExpr {{.*}} 'Bar' contains-errors + // CHECK: RecoveryExpr {{.*}} 'Bar' contains-errors // CHECK-NEXT: `-IntegerLiteral {{.*}} 'int' 1 Bar(1); + + // CHECK: `-VarDecl {{.*}} var1 + // CHECK-NEXT: `-BinaryOperator {{.*}} '' contains-errors + // CHECK-NEXT: |-RecoveryExpr {{.*}} '' contains-errors + // CHECK-NEXT: `-IntegerLiteral {{.*}} 'int' 1 + int var1 = undef + 1; } void InitializerForAuto() { // CHECK: `-VarDecl {{.*}} invalid a 'auto' diff --git a/clang/test/SemaCXX/typo-correction-delayed.cpp b/clang/test/SemaCXX/typo-correction-delayed.cpp index 610d4397138..66d19daf66f 100644 --- a/clang/test/SemaCXX/typo-correction-delayed.cpp +++ b/clang/test/SemaCXX/typo-correction-delayed.cpp @@ -149,7 +149,8 @@ void test() { } namespace PR21905 { -int (*a) () = (void)Z; // expected-error-re {{use of undeclared identifier 'Z'{{$}}}} +int (*a)() = (void)Z; // expected-error-re {{use of undeclared identifier 'Z'{{$}}}} \ + // expected-error {{cannot initialize a variable of type 'int (*)()' with an rvalue of type 'void'}} } namespace PR21947 {