aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2008-08-18 20:55:25 +0000
committerTed Kremenek <kremenek@apple.com>2008-08-18 20:55:25 +0000
commit2dd7ad13bbbd43cb940040725a30cb7789bd2774 (patch)
tree137a16b4bc346cf136c569bdf6868ef282775e29
parent396f0bfd4b2189452914893ce69f5fb068d0ec22 (diff)
Record arguments in .info file.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54947 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-xutils/ccc-analyzer1
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/ccc-analyzer b/utils/ccc-analyzer
index ad7b412b0b..d41978c01f 100755
--- a/utils/ccc-analyzer
+++ b/utils/ccc-analyzer
@@ -41,6 +41,7 @@ sub ProcessClangFailure {
open (OUT, ">", "$PPFile.info") or die "Cannot open $PPFile.info\n";
print OUT "$file\n";
print OUT "$ErrorType\n";
+ print OUT "@$Args\n";
close OUT;
}