diff options
author | Kyrylo Tkachov <kyrylo.tkachov@arm.com> | 2016-07-01 09:22:51 +0000 |
---|---|---|
committer | Kyrylo Tkachov <ktkachov@gcc.gnu.org> | 2016-07-01 09:22:51 +0000 |
commit | 02c19e2bc72d519ca08ceff0ae0824c676085cf3 (patch) | |
tree | 9cab59de712b55a052b0b0bb6071a0d738e5de0d /gcc | |
parent | 920eed8c9edc8888b6181310bf0311177230dd16 (diff) | |
download | gcc-02c19e2bc72d519ca08ceff0ae0824c676085cf3.zip gcc-02c19e2bc72d519ca08ceff0ae0824c676085cf3.tar.gz gcc-02c19e2bc72d519ca08ceff0ae0824c676085cf3.tar.bz2 |
[ARM] Delete thumb_reload_in_h
* config/arm/arm.c (thumb_reload_in_hi): Delete.
* config/arm/arm-protos.h (thumb_reload_in_hi): Delete prototype.
From-SVN: r237906
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/arm/arm-protos.h | 1 | ||||
-rw-r--r-- | gcc/config/arm/arm.c | 7 |
3 files changed, 5 insertions, 8 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 344fa7e..153c10e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2016-07-01 Kyrylo Tkachov <kyrylo.tkachov@arm.com> + + * config/arm/arm.c (thumb_reload_in_hi): Delete. + * config/arm/arm-protos.h (thumb_reload_in_hi): Delete prototype. + 2016-07-01 Eric Botcazou <ebotcazou@adacore.com> * config/arm/arm.c (arm_function_ok_for_sibcall): Add another check diff --git a/gcc/config/arm/arm-protos.h b/gcc/config/arm/arm-protos.h index 1ba2ebb..1943907 100644 --- a/gcc/config/arm/arm-protos.h +++ b/gcc/config/arm/arm-protos.h @@ -195,7 +195,6 @@ extern const char *thumb_call_via_reg (rtx); extern void thumb_expand_movmemqi (rtx *); extern rtx arm_return_addr (int, rtx); extern void thumb_reload_out_hi (rtx *); -extern void thumb_reload_in_hi (rtx *); extern void thumb_set_return_address (rtx, rtx); extern const char *thumb1_output_casesi (rtx *); extern const char *thumb2_output_casesi (rtx *); diff --git a/gcc/config/arm/arm.c b/gcc/config/arm/arm.c index 26b7d1d..580662d 100644 --- a/gcc/config/arm/arm.c +++ b/gcc/config/arm/arm.c @@ -25868,13 +25868,6 @@ thumb_reload_out_hi (rtx *operands) emit_insn (gen_thumb_movhi_clobber (operands[0], operands[1], operands[2])); } -/* Handle reading a half-word from memory during reload. */ -void -thumb_reload_in_hi (rtx *operands ATTRIBUTE_UNUSED) -{ - gcc_unreachable (); -} - /* Return the length of a function name prefix that starts with the character 'c'. */ static int |