Experiment with not converting bug names to lower case.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@50753 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/utils/scan-build b/utils/scan-build
index 9c83de0..74e3c44 100755
--- a/utils/scan-build
+++ b/utils/scan-build
@@ -364,7 +364,8 @@
for my $row ( @Index ) {
- my $bug_type = lc($row->[1]);
+ #my $bug_type = lc($row->[1]);
+ my $bug_type = ($row->[1]);
if (!defined($Totals{$bug_type})) {
$Totals{$bug_type} = 1;
@@ -425,7 +426,8 @@
my $ReportFile = $row->[0];
print OUT " <td class=\"DESC\">";
- print OUT lc($row->[1]);
+ #print OUT lc($row->[1]);
+ print OUT $row->[1];
print OUT "</td>\n";
# Update the file prefix.