cppspec.c (DEFAULT_WORD_SWITCH_TAKES_ARG): Added -MF and -MT.
authorTom Tromey <tromey@cygnus.com>
Fri, 20 Oct 2000 21:14:20 +0000 (21:14 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Fri, 20 Oct 2000 21:14:20 +0000 (21:14 +0000)
* cppspec.c (DEFAULT_WORD_SWITCH_TAKES_ARG): Added -MF and -MT.
* gcc.c (DEFAULT_WORD_SWITCH_TAKES_ARG): Added -MF and -MT.

From-SVN: r36980

gcc/ChangeLog
gcc/cppspec.c
gcc/gcc.c

index 1701c6298deb09704be8f519695c68f75831a34c..3aaacb4cade0e1472f760ff52761825e809d12bc 100644 (file)
@@ -1,3 +1,8 @@
+2000-10-20  Tom Tromey  <tromey@cygnus.com>
+
+       * cppspec.c (DEFAULT_WORD_SWITCH_TAKES_ARG): Added -MF and -MT.
+       * gcc.c (DEFAULT_WORD_SWITCH_TAKES_ARG): Added -MF and -MT.
+
 Fri Oct 20 17:05:49 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
 
        * expr.c (expand_expr, case SAVE_EXPR): Set RTX_UNCHANGING_P on
index 3796cdc7f5a39380985467d1848aee059e7c1cda..428192e2acec504ffc1c42df30cafb28f5b1de60 100644 (file)
@@ -52,7 +52,8 @@ Boston, MA 02111-1307, USA.  */
   || !strcmp (STR, "imacros") || !strcmp (STR, "aux-info") \
   || !strcmp (STR, "idirafter") || !strcmp (STR, "iprefix") \
   || !strcmp (STR, "iwithprefix") || !strcmp (STR, "iwithprefixbefore") \
-  || !strcmp (STR, "isystem") || !strcmp (STR, "specs"))
+  || !strcmp (STR, "isystem") || !strcmp (STR, "specs") \
+  || !strcmp (STR, "MF") || !strcmp (STR, "MT"))
 
 #ifndef WORD_SWITCH_TAKES_ARG
 #define WORD_SWITCH_TAKES_ARG(STR) DEFAULT_WORD_SWITCH_TAKES_ARG (STR)
index ebe4741e388b5d7397a2dea00b3cfdf6f6c35b8c..22bf907259a9ae84f8472baa667a43741a504f15 100644 (file)
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -653,7 +653,8 @@ static struct user_specs *user_specs_head, *user_specs_tail;
   || !strcmp (STR, "imacros") || !strcmp (STR, "aux-info") \
   || !strcmp (STR, "idirafter") || !strcmp (STR, "iprefix") \
   || !strcmp (STR, "iwithprefix") || !strcmp (STR, "iwithprefixbefore") \
-  || !strcmp (STR, "isystem") || !strcmp (STR, "specs"))
+  || !strcmp (STR, "isystem") || !strcmp (STR, "specs") \
+  || !strcmp (STR, "MF") || !strcmp (STR, "MT"))
 
 #ifndef WORD_SWITCH_TAKES_ARG
 #define WORD_SWITCH_TAKES_ARG(STR) DEFAULT_WORD_SWITCH_TAKES_ARG (STR)