From: Argyrios Kyrtzidis Date: Fri, 3 Dec 2010 00:58:10 +0000 (+0000) Subject: Handle any number of SourceRanges inside BugReporter::FlushReport. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b6b7e7bff3101062521de6e79533a3c25e2195d9;p=clang Handle any number of SourceRanges inside BugReporter::FlushReport. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@120769 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Checker/BugReporter.cpp b/lib/Checker/BugReporter.cpp index 3fc62f3fbd..0ef99ad09a 100644 --- a/lib/Checker/BugReporter.cpp +++ b/lib/Checker/BugReporter.cpp @@ -1850,12 +1850,10 @@ void BugReporter::FlushReport(BugReportEquivClass& EQ) { ErrorDiag = Diag.getCustomDiagID(Diagnostic::Warning, TmpStr); } - switch (End-Beg) { - default: assert(0 && "Don't handle this many ranges yet!"); - case 0: Diag.Report(L, ErrorDiag); break; - case 1: Diag.Report(L, ErrorDiag) << Beg[0]; break; - case 2: Diag.Report(L, ErrorDiag) << Beg[0] << Beg[1]; break; - case 3: Diag.Report(L, ErrorDiag) << Beg[0] << Beg[1] << Beg[2]; break; + { + DiagnosticBuilder diagBuilder = Diag.Report(L, ErrorDiag); + for (const SourceRange *I = Beg; I != End; ++I) + diagBuilder << *I; } // Emit a full diagnostic for the path if we have a PathDiagnosticClient.