From 3030f79d9bf8b0de0e25ee513a3cc1bac25f66a3 Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Tue, 20 Oct 1992 14:01:45 -0700 Subject: [PATCH] (WORD_SWITCH_TAKES_ARG): Add -Ttext and -Tbss. From-SVN: r2533 --- gcc/config/m68k/sun2.h | 3 ++- gcc/config/m68k/sun3.h | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) 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")) -- 2.30.2