[cfe-commits] r68236 - /cfe/trunk/lib/Analysis/BugReporter.cpp
Ted Kremenek
kremenek at apple.com
Wed Apr 1 12:43:28 PDT 2009
Author: kremenek
Date: Wed Apr 1 14:43:28 2009
New Revision: 68236
URL: http://llvm.org/viewvc/llvm-project?rev=68236&view=rev
Log:
Fix comment.
Modified:
cfe/trunk/lib/Analysis/BugReporter.cpp
Modified: cfe/trunk/lib/Analysis/BugReporter.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Analysis/BugReporter.cpp?rev=68236&r1=68235&r2=68236&view=diff
==============================================================================
--- cfe/trunk/lib/Analysis/BugReporter.cpp (original)
+++ cfe/trunk/lib/Analysis/BugReporter.cpp Wed Apr 1 14:43:28 2009
@@ -784,7 +784,7 @@
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()) {
More information about the cfe-commits
mailing list