diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-01-23 00:04:43 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-01-23 00:04:43 +0000 |
commit | 2910dfa80d9d6946ddbc625fc75b97fb12b0f1f2 (patch) | |
tree | 51d79ed095f6aa937fd408d7ec51adf585a7a79a /tools/ccc/ccclib/Tools.py | |
parent | 2e84257c699cd8e98462021b4848e76967ac831d (diff) |
ccc: Fix typo; isn't dynamic typing fun!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62817 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/ccc/ccclib/Tools.py')
-rw-r--r-- | tools/ccc/ccclib/Tools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ccc/ccclib/Tools.py b/tools/ccc/ccclib/Tools.py index b1087d3983..c1b4e41b6a 100644 --- a/tools/ccc/ccclib/Tools.py +++ b/tools/ccc/ccclib/Tools.py @@ -351,7 +351,7 @@ class Darwin_X86_CC1Tool(Tool): return 'cc1',False,False elif type is Types.ObjCType or type is Types.ObjCHeaderType: return 'cc1obj',True,False - elif type is Types.ObjCTypeNoPP or type is Types.ObjCHeaderNoPPTypeP: + elif type is Types.ObjCTypeNoPP or type is Types.ObjCHeaderNoPPType: return 'cc1obj',True,False elif type is Types.CXXType or type is Types.CXXHeaderType: return 'cc1plus',True,True |