Fix regression: immediately terminate ccc-analyzer when gcc reports an error.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55452 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Ted Kremenek 2008-08-28 01:18:44 +00:00
Родитель 6855492ab6
Коммит cb344d0f9b
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -192,6 +192,7 @@ my $Output;
# Forward arguments to gcc.
my $Status = system($CC,@ARGV);
if ($Status) { exit($Status >> 8); }
# Get the analysis options.
my $Analyses = $ENV{'CCC_ANALYZER_ANALYSIS'};