projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2bb0074
)
ccc-analyzer: Forward -msse* options to the compiler.
author
Ted Kremenek
<kremenek@apple.com>
Thu, 10 Jan 2013 19:29:31 +0000
(19:29 +0000)
committer
Ted Kremenek
<kremenek@apple.com>
Thu, 10 Jan 2013 19:29:31 +0000
(19:29 +0000)
llvm-svn: 172094
clang/tools/scan-build/ccc-analyzer
patch
|
blob
|
history
diff --git
a/clang/tools/scan-build/ccc-analyzer
b/clang/tools/scan-build/ccc-analyzer
index
f94f804
..
df694f5
100755
(executable)
--- a/
clang/tools/scan-build/ccc-analyzer
+++ b/
clang/tools/scan-build/ccc-analyzer
@@
-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}) {