From: Jim Wilson Date: Tue, 20 Oct 1992 20:58:39 +0000 (-0700) Subject: (WORD_SWITCH_TAKES_ARG): Add -Ttext and -Tbss. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b4b05f160a461c59ee1d2f278beba27bd5bdc3b8;p=gcc.git (WORD_SWITCH_TAKES_ARG): Add -Ttext and -Tbss. From-SVN: r2532 --- diff --git a/gcc/config/sparc/sparc.h b/gcc/config/sparc/sparc.h index 169cd678eb7..2540652ee98 100644 --- a/gcc/config/sparc/sparc.h +++ b/gcc/config/sparc/sparc.h @@ -65,7 +65,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"))