diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 1993-04-27 14:58:13 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 1993-04-27 14:58:13 +0000 |
commit | 3b39b94f8463fabe0ad1c7d1f897fe16f35e4a0a (patch) | |
tree | 3465c70e0d23b2c903d7c05c1fc7834ecb846069 /gcc/config/svr4.h | |
parent | ab034cfc0ae8017daee188d4e1ea971d77c30a1a (diff) | |
download | gcc-3b39b94f8463fabe0ad1c7d1f897fe16f35e4a0a.tar.gz |
Base WORD_SWITCH_TAKES_ARG on new macro DEFAULT_WORD_SWITCH_TAKES_ARG
From-SVN: r4247
Diffstat (limited to 'gcc/config/svr4.h')
-rw-r--r-- | gcc/config/svr4.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/config/svr4.h b/gcc/config/svr4.h index 866bc7ebc20..64fa031a28f 100644 --- a/gcc/config/svr4.h +++ b/gcc/config/svr4.h @@ -69,8 +69,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. there are no such switches except those implemented by GCC itself. */ #define WORD_SWITCH_TAKES_ARG(STR) \ - (!strcmp (STR, "include") || !strcmp (STR, "imacros") \ - || !strcmp (STR, "aux-info")) + (DEFAULT_WORD_SWITCH_TAKES_ARG (STR) \ + && strcmp (STR, "Tdata") && strcmp (STR, "Ttext") \ + && strcmp (STR, "Tbss")) /* You should redefine CPP_PREDEFINES in any file which includes this one. The definition should be appropriate for the type of target system |