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 625ec51..18fe9fa 100644
--- a/tools/ccc/ccclib/Arguments.py
+++ b/tools/ccc/ccclib/Arguments.py
@@ -747,12 +747,6 @@
         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')