[cfe-commits] r50426 - /cfe/trunk/utils/ccc-analyzer
Ted Kremenek
kremenek at apple.com
Tue Apr 29 09:24:23 PDT 2008
Author: kremenek
Date: Tue Apr 29 11:24:23 2008
New Revision: 50426
URL: http://llvm.org/viewvc/llvm-project?rev=50426&view=rev
Log:
Pass fobjc-gc-only and fobjc-gc options down to clang.
Modified:
cfe/trunk/utils/ccc-analyzer
Modified: cfe/trunk/utils/ccc-analyzer
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/utils/ccc-analyzer?rev=50426&r1=50425&r2=50426&view=diff
==============================================================================
--- cfe/trunk/utils/ccc-analyzer (original)
+++ cfe/trunk/utils/ccc-analyzer Tue Apr 29 11:24:23 2008
@@ -184,7 +184,7 @@
i += 1
# Options with no argument that should pass through to compiler
- if arg == '-nostdinc':
+ if arg in [ '-nostdinc', 'fobjc-gc-only', 'fobjc-gc' ]:
compile_opts.append(arg)
# Options with one argument that should pass through to linker
More information about the cfe-commits
mailing list