diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-04-29 16:24:23 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-04-29 16:24:23 +0000 |
commit | 688e659cb57839b8318d566f08a879ca1c2bd1b4 (patch) | |
tree | 1e727e073e8e29d095c6a5667291955bd9f49f69 | |
parent | 65c9165dad2ecba22ce1b102aea1c0e6db9914fb (diff) |
Pass fobjc-gc-only and fobjc-gc options down to clang.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@50426 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-x | utils/ccc-analyzer | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/ccc-analyzer b/utils/ccc-analyzer index 8db6167af0..e453cec4a2 100755 --- a/utils/ccc-analyzer +++ b/utils/ccc-analyzer @@ -184,7 +184,7 @@ def main(args): 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 |