aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2009-04-01 19:43:28 +0000
committerTed Kremenek <kremenek@apple.com>2009-04-01 19:43:28 +0000
commit0dc65be58d319287b349ec7a898bf28d4c5261af (patch)
tree7f6f0eac46f340a478a3f6aeb579a189c835be9c
parent6b83f669b2ed6e7353cd849601fae9c88525bf19 (diff)
Fix comment.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68236 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Analysis/BugReporter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/BugReporter.cpp b/lib/Analysis/BugReporter.cpp
index 94432c01ce..434b2d5cde 100644
--- a/lib/Analysis/BugReporter.cpp
+++ b/lib/Analysis/BugReporter.cpp
@@ -784,7 +784,7 @@ static void GenExtAddEdge(PathDiagnostic& PD,
if (NewLoc == PrevLoc)
return;
- // Are we jumping between statements with the same compound statement?
+ // Are we jumping between statements within the same compound statement?
if (!allowBlockJump)
if (const Stmt *PS = PrevLoc.asStmt())
if (const Stmt *NS = NewLoc.asStmt()) {