Author: ddunbar
Date: Mon Feb  9 15:22:38 2009
New Revision: 64169

URL: http://llvm.org/viewvc/llvm-project?rev=64169&view=rev
Log:
ccc: -dM wasn't being passed to Darwin/CC1 correctly.

Modified:
    cfe/trunk/tools/ccc/ccclib/Arguments.py

Modified: cfe/trunk/tools/ccc/ccclib/Arguments.py
URL: 
http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/ccc/ccclib/Arguments.py?rev=64169&r1=64168&r2=64169&view=diff

==============================================================================
--- cfe/trunk/tools/ccc/ccclib/Arguments.py (original)
+++ cfe/trunk/tools/ccc/ccclib/Arguments.py Mon Feb  9 15:22:38 2009
@@ -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')


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to