From 2910dfa80d9d6946ddbc625fc75b97fb12b0f1f2 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Fri, 23 Jan 2009 00:04:43 +0000 Subject: [PATCH] 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 --- tools/ccc/ccclib/Tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.40.0