aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2008-04-10 16:12:38 +0000
committerTed Kremenek <kremenek@apple.com>2008-04-10 16:12:38 +0000
commit4bb6ac2bb626003b62c71c044df8959ddf158435 (patch)
treef88fc96e342a4ed42990670d025224fa8081e53c
parent4d35dacf85fc9fb257baa1a846abef2361a1c426 (diff)
When not emitting path diagnostics in BugReporter::EmitWarning(), use the
BugReport-specific SourceRanges (when available). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49486 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Analysis/BugReporter.cpp16
-rwxr-xr-xutils/ccc-analyzer2
2 files changed, 14 insertions, 4 deletions
diff --git a/lib/Analysis/BugReporter.cpp b/lib/Analysis/BugReporter.cpp
index c851696a30..0f7b235944 100644
--- a/lib/Analysis/BugReporter.cpp
+++ b/lib/Analysis/BugReporter.cpp
@@ -358,8 +358,18 @@ void BugReporter::EmitWarning(BugReport& R, ExplodedNode<ValueState>* N) {
if (!S)
return;
- SourceRange Range = S->getSourceRange();
+ const SourceRange *Beg, *End;
+ R.getRanges(Beg, End);
+
+ if (Beg == End) {
+ SourceRange Range = S->getSourceRange();
+
+ Diag.Report(FullSourceLoc(S->getLocStart(), Ctx.getSourceManager()),
+ ErrorDiag, NULL, 0, &Range, 1);
+
+ }
+ else
+ Diag.Report(FullSourceLoc(S->getLocStart(), Ctx.getSourceManager()),
+ ErrorDiag, NULL, 0, Beg, End - Beg);
- Diag.Report(FullSourceLoc(S->getLocStart(), Ctx.getSourceManager()),
- ErrorDiag, NULL, 0, &Range, 1);
}
diff --git a/utils/ccc-analyzer b/utils/ccc-analyzer
index 038032f2dc..23a6d6a857 100755
--- a/utils/ccc-analyzer
+++ b/utils/ccc-analyzer
@@ -74,7 +74,7 @@ def analyze(args,language,output,files,verbose,htmldir):
command = 'cp'.split()
args = command + files + target.split()
else:
- command = 'clang --grsimple'.split()
+ command = 'clang -check-cfref'.split()
args = command + args;
if htmldir is not None: