From: Jim Wilson Date: Tue, 20 Oct 1992 21:01:45 +0000 (-0700) Subject: (WORD_SWITCH_TAKES_ARG): Add -Ttext and -Tbss. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3030f79d9bf8b0de0e25ee513a3cc1bac25f66a3;p=gcc.git (WORD_SWITCH_TAKES_ARG): Add -Ttext and -Tbss. From-SVN: r2533 --- diff --git a/gcc/config/m68k/sun2.h b/gcc/config/m68k/sun2.h index 9cf709c9684..bfe9bf7ca61 100644 --- a/gcc/config/m68k/sun2.h +++ b/gcc/config/m68k/sun2.h @@ -48,7 +48,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* These compiler options take an argument. We ignore -target for now. */ #define WORD_SWITCH_TAKES_ARG(STR) \ - (!strcmp (STR, "Tdata") || !strcmp (STR, "include") \ + (!strcmp (STR, "Tdata") || !strcmp (STR, "Ttext") \ + || !strcmp (STR, "Tbss") || !strcmp (STR, "include") \ || !strcmp (STR, "imacros") || !strcmp (STR, "target") \ || !strcmp (STR, "assert") || !strcmp (STR, "aux-info")) diff --git a/gcc/config/m68k/sun3.h b/gcc/config/m68k/sun3.h index 802d68cdd06..7afab8db02e 100644 --- a/gcc/config/m68k/sun3.h +++ b/gcc/config/m68k/sun3.h @@ -72,7 +72,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* These compiler options take an argument. We ignore -target for now. */ #define WORD_SWITCH_TAKES_ARG(STR) \ - (!strcmp (STR, "Tdata") || !strcmp (STR, "include") \ + (!strcmp (STR, "Tdata") || !strcmp (STR, "Ttext") \ + || !strcmp (STR, "Tbss") || !strcmp (STR, "include") \ || !strcmp (STR, "imacros") || !strcmp (STR, "target") \ || !strcmp (STR, "assert") || !strcmp (STR, "aux-info"))