diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-04-01 19:43:28 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-04-01 19:43:28 +0000 |
commit | 95af35e2510f5177f85cab6d13036a7cc2d12b5c (patch) | |
tree | f04b4ee62632d54174dce0fb2e2d9aca05a4bdd8 /clang/lib/Analysis/BugReporter.cpp | |
parent | 35b0c52addb91f4488c6205f36a57b1c8294394c (diff) | |
download | bcm5719-llvm-95af35e2510f5177f85cab6d13036a7cc2d12b5c.tar.gz bcm5719-llvm-95af35e2510f5177f85cab6d13036a7cc2d12b5c.zip |
Fix comment.
llvm-svn: 68236
Diffstat (limited to 'clang/lib/Analysis/BugReporter.cpp')
-rw-r--r-- | clang/lib/Analysis/BugReporter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Analysis/BugReporter.cpp b/clang/lib/Analysis/BugReporter.cpp index 94432c01ce2..434b2d5cde7 100644 --- a/clang/lib/Analysis/BugReporter.cpp +++ b/clang/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()) { |