Have 'Analyzer Failures' files be named to reflect the category of problem.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63080 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/utils/ccc-analyzer b/utils/ccc-analyzer
index 6c5e700..a3b7851 100755
--- a/utils/ccc-analyzer
+++ b/utils/ccc-analyzer
@@ -41,15 +41,20 @@
   return ".i";
 }
 
+my $ParserRejects = "Parser Rejects";
+
 sub ProcessClangFailure {
   my ($Clang, $Lang, $file, $Args, $HtmlDir, $ErrorType, $ofile) = @_;
   my $Dir = "$HtmlDir/crashes";
   mkpath $Dir;
+  
+  my $prefix = "clang_crash";
+  if ($ErrorType == $ParserRejects) { $prefix = "clang_parser_rejects"; }
 
   # Generate the preprocessed file with cc (i.e., gcc).
-  my ($PPH, $PPFile) = tempfile("clang_crash_XXXXXX",
-                                  SUFFIX => GetPPExt($Lang),
-                                  DIR => $Dir);
+  my ($PPH, $PPFile) = tempfile( $prefix . "_XXXXXX",
+                                 SUFFIX => GetPPExt($Lang),
+                                 DIR => $Dir);
 
   system $CC, @$Args, "-E", "-o", $PPFile;
   close ($PPH);
@@ -171,7 +176,7 @@
   }
   elsif ($Result) {
     ProcessClangFailure($Clang, $Lang, $file, \@CmdArgsSansAnalyses, $HtmlDir,
-                        "Parser Rejects", $ofile);
+                        $ParserRejects, $ofile);
   }
   
   `rm -f $ofile`;