Make sure that we finish the DeclSpec when parsing a C++

type-specifier-seq. Fixes some conditional-jump-on-unitialized-value
errors in valgrind. Also counts as attempt #2 at making the MSVC
buildbot happy.

llvm-svn: 97077
This commit is contained in:
Douglas Gregor 2010-02-24 23:13:13 +00:00
parent 90ad922a73
commit 40d732fee7
1 changed files with 1 additions and 0 deletions

View File

@ -889,6 +889,7 @@ bool Parser::ParseCXXTypeSpecifierSeq(DeclSpec &DS) {
ParsedTemplateInfo(), /*SuppressDeclarations*/true))
{}
DS.Finish(Diags, PP);
return false;
}