]> granicus.if.org Git - clang/commitdiff
Merging r169688: into 3.2 release branch.
authorPawel Wodnicki <pawel@32bitmicro.com>
Mon, 10 Dec 2012 03:31:55 +0000 (03:31 +0000)
committerPawel Wodnicki <pawel@32bitmicro.com>
Mon, 10 Dec 2012 03:31:55 +0000 (03:31 +0000)
PR14549. Don't assert if we see an incomplete decltype specifier at the end of the file.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/branches/release_32@169722 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Parse/ParseDeclCXX.cpp
test/Parser/bracket-crash.cpp

index 4cb14e24f48fc722106cf65f707d12557539ad40..f11a9d1995720f13ed894d590733a19bdf31ef01 100644 (file)
@@ -706,8 +706,7 @@ SourceLocation Parser::ParseDecltypeSpecifier(DeclSpec &DS) {
       if (SkipUntil(tok::r_paren, /*StopAtSemi=*/true, /*DontConsume=*/true)) {
         EndLoc = ConsumeParen();
       } else {
-        assert(Tok.is(tok::semi));
-        if (PP.isBacktrackEnabled()) {
+        if (PP.isBacktrackEnabled() && Tok.is(tok::semi)) {
           // Backtrack to get the location of the last token before the semi.
           PP.RevertCachedTokens(2);
           ConsumeToken(); // the semi.
index bcc6eabc6e99c7e6ddc97678b7fd4f3ea5e624d9..93b52940773ded05e5a271a135d1568d2fd3f6d6 100644 (file)
@@ -4,3 +4,6 @@ decltype(;
 struct{
   a
 }
+
+// PR14549. Must be at end of file.
+decltype(