Skip to content
Snippets Groups Projects
Commit 75dcea57 authored by Ted Kremenek's avatar Ted Kremenek
Browse files

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

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172094 91177308-0d34-0410-b5e6-96231b3b80d8
parent ed91bbaa
No related branches found
No related tags found
No related merge requests found
...@@ -491,6 +491,10 @@ foreach (my $i = 0; $i < scalar(@ARGV); ++$i) { ...@@ -491,6 +491,10 @@ 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.*/) {
push @CompileOpts,$Arg;
next;
}
# Options with possible arguments that should pass through to linker. # Options with possible arguments that should pass through to linker.
if (defined $LinkerOptionMap{$ArgKey}) { if (defined $LinkerOptionMap{$ArgKey}) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment