From: Daniel Dunbar Date: Mon, 9 Feb 2009 21:22:38 +0000 (+0000) Subject: ccc: -dM wasn't being passed to Darwin/CC1 correctly. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8aa6181260b73675e01de56858b493ac7d468899;p=clang ccc: -dM wasn't being passed to Darwin/CC1 correctly. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64169 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/ccc/ccclib/Arguments.py b/tools/ccc/ccclib/Arguments.py index 625ec51524..18fe9fadda 100644 --- a/tools/ccc/ccclib/Arguments.py +++ b/tools/ccc/ccclib/Arguments.py @@ -747,12 +747,6 @@ class OptionParser: self.dAOption = self.addOption(FlagOption('-dA', self.dGroup)) self.dMOption = self.addOption(FlagOption('-dM', self.dGroup)) self.dOption = self.addOption(FlagOption('-d', self.dGroup)) - - # Use a group for this in anticipation of adding more -d - # options explicitly. Note that we don't put many -d things in - # the -d group (like -dylinker, or '-d' by itself) because it - # is really a gcc bug that it ships these to cc1. - self.dGroup = OptionGroup('-d') self.addOption(JoinedOption('-d', group=self.dGroup)) self.gGroup = OptionGroup('-g')