diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2011-06-24 19:59:27 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2011-06-24 19:59:27 +0000 |
commit | d8a2771109d5325adba3acbf06dbb0987162f7fe (patch) | |
tree | ad7b047d535754a28d88c643f0210dcfe8e517f6 /clang/lib/Sema/SemaDeclAttr.cpp | |
parent | 018970216c9fce84c3d62cf8a0ca8583f1690ce9 (diff) | |
download | bcm5719-llvm-d8a2771109d5325adba3acbf06dbb0987162f7fe.tar.gz bcm5719-llvm-d8a2771109d5325adba3acbf06dbb0987162f7fe.zip |
Only do delayed diagnostics if there were no errors when parsing the decl.
Fixes crash in http://llvm.org/PR10109 & rdar://9584039.
llvm-svn: 133816
Diffstat (limited to 'clang/lib/Sema/SemaDeclAttr.cpp')
-rw-r--r-- | clang/lib/Sema/SemaDeclAttr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaDeclAttr.cpp b/clang/lib/Sema/SemaDeclAttr.cpp index 1b358f4ca6d..240c15a8e06 100644 --- a/clang/lib/Sema/SemaDeclAttr.cpp +++ b/clang/lib/Sema/SemaDeclAttr.cpp @@ -3258,7 +3258,7 @@ void Sema::DelayedDiagnostics::popParsingDecl(Sema &S, ParsingDeclState state, // We only want to actually emit delayed diagnostics when we // successfully parsed a decl. - if (decl) { + if (decl && !decl->isInvalidDecl()) { // We emit all the active diagnostics, not just those starting // from the saved state. The idea is this: we get one push for a // decl spec and another for each declarator; in a decl group like: |