summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2013-01-23 21:22:14 +0000
committerTed Kremenek <kremenek@apple.com>2013-01-23 21:22:14 +0000
commit15b47bc8725dbdd3b12dfa59806531c4ed05cf64 (patch)
tree3cf309c78de6632acea704c824a72800d770e578
parent546bb562782fe53770af098d46a07e0e91b42810 (diff)
downloadbcm5719-llvm-15b47bc8725dbdd3b12dfa59806531c4ed05cf64.tar.gz
bcm5719-llvm-15b47bc8725dbdd3b12dfa59806531c4ed05cf64.zip
Always process an index.html file if we have HTML output. Patch by Justin Bogner.
llvm-svn: 173294
-rwxr-xr-xclang/tools/scan-build/scan-build2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/tools/scan-build/scan-build b/clang/tools/scan-build/scan-build
index 5bff0d95b66..20b85a06d7b 100755
--- a/clang/tools/scan-build/scan-build
+++ b/clang/tools/scan-build/scan-build
@@ -1563,7 +1563,7 @@ if (defined $OutputFormat) {
Diag "Analysis run complete.\n";
Diag "Analysis results (plist files) deposited in '$HtmlDir'\n";
}
- elsif ($OutputFormat =~ /html/) {
+ if ($OutputFormat =~ /html/) {
# Postprocess the HTML directory.
my $NumBugs = Postprocess($HtmlDir, $BaseDir, $AnalyzerStats);
OpenPOWER on IntegriCloud