diff options
-rw-r--r-- | lib/Frontend/VerifyDiagnosticConsumer.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/Frontend/VerifyDiagnosticConsumer.cpp b/lib/Frontend/VerifyDiagnosticConsumer.cpp index 1676a44c46..96c990c54f 100644 --- a/lib/Frontend/VerifyDiagnosticConsumer.cpp +++ b/lib/Frontend/VerifyDiagnosticConsumer.cpp @@ -443,8 +443,10 @@ static unsigned CheckLists(DiagnosticsEngine &Diags, SourceManager &SourceMgr, break; } if (II == IE) { - if (D.Count == D.OneOrMoreCount && FoundOnce) { - // We are only interested in at least one match and we found one. + if (D.Count == D.OneOrMoreCount) { + if (!FoundOnce) + LeftOnly.push_back(*I); + // We are only interested in at least one match, so exit the loop. break; } // Not found. |