(WORD_SWITCH_TAKES_ARG): Add -Ttext and -Tbss.
authorJim Wilson <wilson@gcc.gnu.org>
Tue, 20 Oct 1992 20:58:39 +0000 (13:58 -0700)
committerJim Wilson <wilson@gcc.gnu.org>
Tue, 20 Oct 1992 20:58:39 +0000 (13:58 -0700)
From-SVN: r2532

gcc/config/sparc/sparc.h

index 169cd67..2540652 100644 (file)
@@ -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"))