r192613 - Move comment to its proper place.
Ted Kremenek
kremenek at apple.com
Mon Oct 14 12:11:25 PDT 2013
Author: kremenek
Date: Mon Oct 14 14:11:25 2013
New Revision: 192613
URL: http://llvm.org/viewvc/llvm-project?rev=192613&view=rev
Log:
Move comment to its proper place.
Modified:
cfe/trunk/lib/Sema/AnalysisBasedWarnings.cpp
Modified: cfe/trunk/lib/Sema/AnalysisBasedWarnings.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/AnalysisBasedWarnings.cpp?rev=192613&r1=192612&r2=192613&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/AnalysisBasedWarnings.cpp (original)
+++ cfe/trunk/lib/Sema/AnalysisBasedWarnings.cpp Mon Oct 14 14:11:25 2013
@@ -1598,6 +1598,7 @@ AnalysisBasedWarnings::IssueWarnings(sem
const Stmt *Body = D->getBody();
assert(Body);
+ // Construct the analysis context with the specified CFG build options.
AnalysisDeclContext AC(/* AnalysisDeclContextManager */ 0, D);
// Don't generate EH edges for CallExprs as we'd like to avoid the n^2
@@ -1631,8 +1632,7 @@ AnalysisBasedWarnings::IssueWarnings(sem
.setAlwaysAdd(Stmt::AttributedStmtClass);
}
- // Construct the analysis context with the specified CFG build options.
-
+
// Emit delayed diagnostics.
if (!fscope->PossiblyUnreachableDiags.empty()) {
bool analyzed = false;
More information about the cfe-commits
mailing list