aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJim Wilson <wilson@gcc.gnu.org>1992-10-20 14:01:45 -0700
committerJim Wilson <wilson@gcc.gnu.org>1992-10-20 14:01:45 -0700
commit3030f79d9bf8b0de0e25ee513a3cc1bac25f66a3 (patch)
tree7e12fe850b0ede4c2ca323c663245246b8765993 /gcc
parentb4b05f160a461c59ee1d2f278beba27bd5bdc3b8 (diff)
downloadgcc-3030f79d9bf8b0de0e25ee513a3cc1bac25f66a3.zip
gcc-3030f79d9bf8b0de0e25ee513a3cc1bac25f66a3.tar.gz
gcc-3030f79d9bf8b0de0e25ee513a3cc1bac25f66a3.tar.bz2
(WORD_SWITCH_TAKES_ARG): Add -Ttext and -Tbss.
From-SVN: r2533
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/m68k/sun2.h3
-rw-r--r--gcc/config/m68k/sun3.h3
2 files changed, 4 insertions, 2 deletions
diff --git a/gcc/config/m68k/sun2.h b/gcc/config/m68k/sun2.h
index 9cf709c..bfe9bf7 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 802d68c..7afab8d 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"))