[cfe-commits] r172094 - /cfe/trunk/tools/scan-build/ccc-analyzer
Ted Kremenek
kremenek at apple.com
Thu Jan 10 11:29:32 PST 2013
Author: kremenek
Date: Thu Jan 10 13:29:31 2013
New Revision: 172094
URL: http://llvm.org/viewvc/llvm-project?rev=172094&view=rev
Log:
ccc-analyzer: Forward -msse* options to the compiler.
Modified:
cfe/trunk/tools/scan-build/ccc-analyzer
Modified: cfe/trunk/tools/scan-build/ccc-analyzer
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/scan-build/ccc-analyzer?rev=172094&r1=172093&r2=172094&view=diff
==============================================================================
--- cfe/trunk/tools/scan-build/ccc-analyzer (original)
+++ cfe/trunk/tools/scan-build/ccc-analyzer Thu Jan 10 13:29:31 2013
@@ -491,6 +491,10 @@
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}) {
More information about the cfe-commits
mailing list