diff options
| author | Steven Bosscher <steven@gcc.gnu.org> | 2013-05-05 20:47:24 +0000 |
|---|---|---|
| committer | John David Anglin <danglin@gcc.gnu.org> | 2013-05-05 20:47:24 +0000 |
| commit | 33e6755738a59a47e0f2e436e01b72514043e8cb (patch) | |
| tree | 9397ce89ab5ec3f7f3bb5a5766dcba0134104626 /gcc/config.gcc | |
| parent | 3095685e6d324d98cfebc9f72201a8d4f1d1458c (diff) | |
| download | gcc-33e6755738a59a47e0f2e436e01b72514043e8cb.zip gcc-33e6755738a59a47e0f2e436e01b72514043e8cb.tar.gz gcc-33e6755738a59a47e0f2e436e01b72514043e8cb.tar.bz2 | |
config.gcc (hppa*-*-*): Remove MASK_BIG_SWITCH from CPU default.
* config.gcc (hppa*-*-*): Remove MASK_BIG_SWITCH from CPU default.
* config/pa/pa.opt: Make mbig-switch a no-op.
* config/pa/pa.h (TARGET_DEFAULT): Remove MASK_BIG_SWITCH.
(CASE_VECTOR_MODE): Always return SImode.
(ASM_OUTPUT_ADDR_VEC_ELT, ASM_OUTPUT_ADDR_DIFF_ELT): Remove code
for the !TARGET_BIG_SWITCH case.
* config/pa/pa-linux.h: Likewise.
* config/pa/pa-openbsd.h: Likewise.
* config/pa/pa-hpux.h: Define TARGET_DEFAULT to 0.
* config/pa/pa.md (short_jump): Remove define_insn.
(casesi): Remove code for the !TARGET_BIG_SWITCH case.
(casesi0): Remove define_insn.
(type): Remove btable_branch.
(pa_combine_type): Likewise.
(in_nullified_branch_delay): Likewise.
(in_call_delay): Likewise.
(define_delay): Likewise.
(define_insn_reservation "Z3"): Likewise.
(define_insn_reservation "Z4"): Likewise.
* config/pa/pa.c (pa_reorg): Remove code for !TARGET_BIG_SWITCH.
(pa_adjust_insn_length): Remove adjustment for btable branches.
* doc/invoke.texi (HPPA Options): Delete documentation for mbig-switch
and mno-big-switch
Co-Authored-By: John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
From-SVN: r198612
Diffstat (limited to 'gcc/config.gcc')
| -rw-r--r-- | gcc/config.gcc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index 5a205df..add6e31 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -3698,10 +3698,9 @@ case ${target} in ;; hppa*-*-*) - target_cpu_default2="MASK_BIG_SWITCH" if test x$gas = xyes then - target_cpu_default2="${target_cpu_default2}|MASK_GAS|MASK_JUMP_IN_DELAY" + target_cpu_default2="MASK_GAS|MASK_JUMP_IN_DELAY" fi ;; |
