ccc-analyzer: Forward -msse* options to the compiler.

llvm-svn: 172094
This commit is contained in:
Ted Kremenek 2013-01-10 19:29:31 +00:00
parent 2bb0074232
commit 4a800f876a

View File

@ -491,6 +491,10 @@ foreach (my $i = 0; $i < scalar(@ARGV); ++$i) {
while ($Cnt > 0) { ++$i; --$Cnt; push @CompileOpts, $ARGV[$i]; }
next;
}
if ($Arg =~ /-msse.*/) {
push @CompileOpts,$Arg;
next;
}
# Options with possible arguments that should pass through to linker.
if (defined $LinkerOptionMap{$ArgKey}) {