From: Richard Smith Date: Sat, 19 Dec 2015 02:40:19 +0000 (+0000) Subject: Fix crash-on-invalid if a :: is followed by two or more open parentheses (and then... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9103b9988cf62bb042350ec93ee08f541bc1cbd8;p=clang Fix crash-on-invalid if a :: is followed by two or more open parentheses (and then something else). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@256080 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Parse/ParseDecl.cpp b/lib/Parse/ParseDecl.cpp index 4039f2ac2a..c85ea4a11f 100644 --- a/lib/Parse/ParseDecl.cpp +++ b/lib/Parse/ParseDecl.cpp @@ -5198,6 +5198,15 @@ void Parser::ParseDirectDeclarator(Declarator &D) { } goto PastIdentifier; } + + if (D.getCXXScopeSpec().isNotEmpty()) { + // We have a scope specifier but no following unqualified-id. + Diag(PP.getLocForEndOfToken(D.getCXXScopeSpec().getEndLoc()), + diag::err_expected_unqualified_id) + << /*C++*/1; + D.SetIdentifier(nullptr, Tok.getLocation()); + goto PastIdentifier; + } } else if (Tok.is(tok::identifier) && D.mayHaveIdentifier()) { assert(!getLangOpts().CPlusPlus && "There's a C++-specific check for tok::identifier above"); diff --git a/test/Parser/colon-colon-parentheses.cpp b/test/Parser/colon-colon-parentheses.cpp index e031ce2e90..b3db4fbed2 100644 --- a/test/Parser/colon-colon-parentheses.cpp +++ b/test/Parser/colon-colon-parentheses.cpp @@ -22,9 +22,9 @@ void foo() { } #ifdef PR21815 -// expected-error@+4{{C++ requires a type specifier for all declarations}} -// expected-error@+3{{expected unqualified-id}} -// expected-error@+3{{expected expression}} -// expected-error@+1{{expected ';' after top level declarator}} -a (::( +// expected-error@+2{{C++ requires a type specifier for all declarations}} +// expected-error@+1{{expected unqualified-id}} +a (::( )); + +::((c )); // expected-error{{expected unqualified-id}} #endif