diff options
-rwxr-xr-x | utils/ccc-analyzer | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/utils/ccc-analyzer b/utils/ccc-analyzer index 598e7024e9..e60c69425e 100755 --- a/utils/ccc-analyzer +++ b/utils/ccc-analyzer @@ -539,11 +539,20 @@ foreach (my $i = 0; $i < scalar(@ARGV); ++$i) { open(IN, $ARGV[$i+1]); while (<IN>) { s/\015?\012//; push @Files,$_; } close(IN); - ++$i; next; + ++$i; + next; } + # Handle -Wno-. We don't care about extra warnings, but + # we should suppress ones that we don't want to see. + if ($Arg =~ /^-Wno-/) { + push @CompileOpts, $Arg; + next; + } + if (!($Arg =~ /^-/)) { - push @Files,$Arg; next; + push @Files, $Arg; + next; } } |