diff options
author | Joseph Myers <joseph@codesourcery.com> | 2010-08-03 10:42:46 +0100 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2010-08-03 10:42:46 +0100 |
commit | 1890bccc84b42bf84137be7ffbc8a61bc8463046 (patch) | |
tree | 9a920a81dc40a5bb34841a92d3119712b2e73d99 /gcc/config/bfin | |
parent | dc91d8927961dc5785d3622d3502d422e42f85c9 (diff) | |
download | gcc-1890bccc84b42bf84137be7ffbc8a61bc8463046.zip gcc-1890bccc84b42bf84137be7ffbc8a61bc8463046.tar.gz gcc-1890bccc84b42bf84137be7ffbc8a61bc8463046.tar.bz2 |
alpha.h (SWITCH_TAKES_ARG): Define.
* config/alpha/alpha.h (SWITCH_TAKES_ARG): Define.
* config/alpha/osf5.h (LIB_SPEC): Don't handle -a.
* config/bfin/bfin.h (ASM_SPEC, LINK_SPEC): Don't pass -G*
options.
* config/darwin.h (WORD_SWITCH_TAKES_ARG): Handle -iframework.
* config/ia64/ia64.h (SWITCH_TAKES_ARG): Define.
* config/iq2000/iq2000.h (SWITCH_TAKES_ARG): Remove.
* config/rs6000/sysv4.h (SWITCH_TAKES_ARG): Define using
DEFAULT_SWITCH_TAKES_ARG.
* config/rx/rx.opt (-patch=): Remove option.
* config/rx/rx.c (rx_handle_option): Don't handle OPT_patch_.
* defaults.h (DEFAULT_WORD_SWITCH_TAKES_ARG): Handle -imultilib.
* doc/invoke.texi (RX Options): Remove -patch=.
* gcc.c (cc1_options): Pass -aux-info* instead of -a* options.
(option_map): Remove --profile-blocks, --quiet and --silent.
ada:
* gcc-interface/lang-specs.h: Don't pass -a options.
c-family:
* c.opt (-print-pch-checksum): Remove option.
* c-opts.c (c_common_handle_option): Don't handle
OPT_print_pch_checksum.
From-SVN: r162838
Diffstat (limited to 'gcc/config/bfin')
-rw-r--r-- | gcc/config/bfin/bfin.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/config/bfin/bfin.h b/gcc/config/bfin/bfin.h index 367cd96..e6e2aae 100644 --- a/gcc/config/bfin/bfin.h +++ b/gcc/config/bfin/bfin.h @@ -1,5 +1,5 @@ /* Definitions for the Blackfin port. - Copyright (C) 2005, 2007, 2008, 2009 Free Software Foundation, Inc. + Copyright (C) 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. Contributed by Analog Devices. This file is part of GCC. @@ -252,7 +252,7 @@ extern int target_flags; Defined in svr4.h. */ #undef ASM_SPEC #define ASM_SPEC "\ -%{G*} %{v} %{n} %{T} %{Ym,*} %{Yd,*} %{Wa,*:%*} \ +%{v} %{n} %{T} %{Ym,*} %{Yd,*} %{Wa,*:%*} \ %{mno-fdpic:-mnopic} %{mfdpic}" #define LINK_SPEC "\ @@ -262,7 +262,6 @@ extern int target_flags; %{static:-dn -Bstatic} \ %{shared:-G -Bdynamic} \ %{symbolic:-Bsymbolic} \ -%{G*} \ %{YP,*} \ %{Qy:} %{!Qn:-Qy} \ -init __init -fini __fini " |