diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-02-09 21:22:38 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-02-09 21:22:38 +0000 |
commit | 8aa6181260b73675e01de56858b493ac7d468899 (patch) | |
tree | 5e1f65af36c3efd2ff0ff2f58e061ff0bae3807e | |
parent | 1efee7879cd4c6dda74f38f807155a8497fd046d (diff) |
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
-rw-r--r-- | tools/ccc/ccclib/Arguments.py | 6 |
1 files changed, 0 insertions, 6 deletions
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') |