diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1992-10-20 13:58:39 -0700 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1992-10-20 13:58:39 -0700 |
commit | b4b05f160a461c59ee1d2f278beba27bd5bdc3b8 (patch) | |
tree | e533d5e5e9f61a5821d8353a4723937f08254cfb | |
parent | e459b6d0727f2d9d28a36d0af5fa13e95920d6dc (diff) | |
download | gcc-b4b05f160a461c59ee1d2f278beba27bd5bdc3b8.zip gcc-b4b05f160a461c59ee1d2f278beba27bd5bdc3b8.tar.gz gcc-b4b05f160a461c59ee1d2f278beba27bd5bdc3b8.tar.bz2 |
(WORD_SWITCH_TAKES_ARG): Add -Ttext and -Tbss.
From-SVN: r2532
-rw-r--r-- | gcc/config/sparc/sparc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/config/sparc/sparc.h b/gcc/config/sparc/sparc.h index 169cd67..2540652 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")) |