diff options
author | Neil Booth <neil@daikokuya.demon.co.uk> | 2001-01-11 22:10:49 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2001-01-11 22:10:49 +0000 |
commit | d3956766710709dcf12eb3a1a183046b99f75755 (patch) | |
tree | 64d716646390559d863c0dc1b71d6fdcbbbcac93 /gcc | |
parent | 05e817242739f61b792b0730712e512ba25256b5 (diff) | |
download | gcc-d3956766710709dcf12eb3a1a183046b99f75755.zip gcc-d3956766710709dcf12eb3a1a183046b99f75755.tar.gz gcc-d3956766710709dcf12eb3a1a183046b99f75755.tar.bz2 |
* cppspec.c (DEFAULT_WORD_SWITCH_TAKES_ARG): Add -MQ.
From-SVN: r38926
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/cppspec.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8e8c116..25c23ce 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2001-01-11 Neil Booth <neil@daikokuya.demon.co.uk> + * cppspec.c (DEFAULT_WORD_SWITCH_TAKES_ARG): Add -MQ. + +2001-01-11 Neil Booth <neil@daikokuya.demon.co.uk> + * cppinit.c (cpp_start_read): If -fpreprocessed, ignore -D, -U and -A, and don't initialize the builtins. * cppmain.c (cb_define, cb_undef): Unconditionally process diff --git a/gcc/cppspec.c b/gcc/cppspec.c index 428192e..e5ad4e4 100644 --- a/gcc/cppspec.c +++ b/gcc/cppspec.c @@ -53,7 +53,7 @@ Boston, MA 02111-1307, USA. */ || !strcmp (STR, "idirafter") || !strcmp (STR, "iprefix") \ || !strcmp (STR, "iwithprefix") || !strcmp (STR, "iwithprefixbefore") \ || !strcmp (STR, "isystem") || !strcmp (STR, "specs") \ - || !strcmp (STR, "MF") || !strcmp (STR, "MT")) + || !strcmp (STR, "MF") || !strcmp (STR, "MT") || !strcmp (STR, "MQ")) #ifndef WORD_SWITCH_TAKES_ARG #define WORD_SWITCH_TAKES_ARG(STR) DEFAULT_WORD_SWITCH_TAKES_ARG (STR) |