diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-01-13 21:07:43 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-01-13 21:07:43 +0000 |
commit | 25d4a8fc3bdef9de2cd94a1a73c4e38ff6399340 (patch) | |
tree | 802019343f28978283180a77747e1da539d59f99 /tools/ccc/ccclib/Driver.py | |
parent | a0fc55f3e9d7d7aa8761d0a9726033947d0d6bc0 (diff) |
ccc: Darwin: Implement some important general argument translations
for the Darwin tool chain.
- Ideally we would localize these to tool specific argument
processing but for now this matches gcc closely.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62181 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/ccc/ccclib/Driver.py')
-rw-r--r-- | tools/ccc/ccclib/Driver.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ccc/ccclib/Driver.py b/tools/ccc/ccclib/Driver.py index 310607c1da..429142cb66 100644 --- a/tools/ccc/ccclib/Driver.py +++ b/tools/ccc/ccclib/Driver.py @@ -335,7 +335,7 @@ class Driver(object): # revert to unknown. I think this is more likely a # bug / unintended behavior in gcc. Not very # important though. - inputType = ObjectType + inputType = Types.ObjectType # We claim things here so that options for which we silently allow # override only ever claim the used option. |