[scan-build] Whitelist all -mXXXX options.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@180073 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Ted Kremenek 2013-04-23 00:10:55 +00:00
Родитель 2fb5d1297e
Коммит 11a90ed93f
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -491,7 +491,7 @@ foreach (my $i = 0; $i < scalar(@ARGV); ++$i) {
while ($Cnt > 0) { ++$i; --$Cnt; push @CompileOpts, $ARGV[$i]; } while ($Cnt > 0) { ++$i; --$Cnt; push @CompileOpts, $ARGV[$i]; }
next; next;
} }
if ($Arg =~ /-msse.*/) { if ($Arg =~ /-m.*/) {
push @CompileOpts,$Arg; push @CompileOpts,$Arg;
next; next;
} }