diff options
author | Marc Espie <espie@gcc.gnu.org> | 2000-10-02 08:21:35 +0000 |
---|---|---|
committer | Marc Espie <espie@gcc.gnu.org> | 2000-10-02 08:21:35 +0000 |
commit | 2efe55c1eddecec66ec3a6bc1c1ec01b327d8cc0 (patch) | |
tree | 2a4111a1dabefec360bafaa929ba6a62b9b0c6c8 | |
parent | 0e8a7454bfed936172df858ccab2eb03c0045968 (diff) | |
download | gcc-2efe55c1eddecec66ec3a6bc1c1ec01b327d8cc0.zip gcc-2efe55c1eddecec66ec3a6bc1c1ec01b327d8cc0.tar.gz gcc-2efe55c1eddecec66ec3a6bc1c1ec01b327d8cc0.tar.bz2 |
Mon Oct 2 10:20:13 CEST 2000 Marc Espie <espie@openbsd.org>
* config/alpha.h (WORD_SWITCH_TAKES_ARG): add -rpath to default,
instead of redefining from scratch.
From-SVN: r36693
-rw-r--r-- | gcc/config/alpha/alpha.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gcc/config/alpha/alpha.h b/gcc/config/alpha/alpha.h index 092e62e..74b98e4 100644 --- a/gcc/config/alpha/alpha.h +++ b/gcc/config/alpha/alpha.h @@ -44,11 +44,7 @@ Boston, MA 02111-1307, USA. */ #define SIGNED_CHAR_SPEC "%{funsigned-char:-D__CHAR_UNSIGNED__}" #define WORD_SWITCH_TAKES_ARG(STR) \ - (!strcmp (STR, "rpath") || !strcmp (STR, "include") \ - || !strcmp (STR, "imacros") || !strcmp (STR, "aux-info") \ - || !strcmp (STR, "idirafter") || !strcmp (STR, "iprefix") \ - || !strcmp (STR, "iwithprefix") || !strcmp (STR, "iwithprefixbefore") \ - || !strcmp (STR, "isystem")) + (!strcmp (STR, "rpath") || DEFAULT_WORD_SWITCH_TAKES_ARG(STR)) /* Print subsidiary information on the compiler version in use. */ #define TARGET_VERSION |