diff options
author | Trevor Saunders <tbsaunde+gcc@tbsaunde.org> | 2016-11-02 03:44:50 +0000 |
---|---|---|
committer | Trevor Saunders <tbsaunde@gcc.gnu.org> | 2016-11-02 03:44:50 +0000 |
commit | 9b2ea071ab12eb84e9be8631d64296bc5c0be7ae (patch) | |
tree | 986b342a8cf066b1df1ec57dc9b81dbebf1a3cd5 /gcc/config/m32c | |
parent | 3f95ca6c0f89f31d0caf0aeb056e53c7bbcd7af3 (diff) | |
download | gcc-9b2ea071ab12eb84e9be8631d64296bc5c0be7ae.zip gcc-9b2ea071ab12eb84e9be8631d64296bc5c0be7ae.tar.gz gcc-9b2ea071ab12eb84e9be8631d64296bc5c0be7ae.tar.bz2 |
use rtx_insn * in various places where it is obvious
gcc/ChangeLog:
2016-11-01 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
* config/arc/arc.c (arc_emit_call_tls_get_addr): Make the type
of variables rtx_insn *.
* config/arm/arm.c (arm_call_tls_get_addr): Likewise.
(legitimize_tls_address): Likewise.
* config/bfin/bfin.c (hwloop_optimize): Likewise.
(bfin_gen_bundles): Likewise.
* config/c6x/c6x.c (reorg_split_calls): Likewise.
(c6x_reorg): Likewise.
* config/frv/frv.c (frv_reorder_packet): Likewise.
* config/i386/i386.c (ix86_split_idivmod): Likewise.
* config/ia64/ia64.c (ia64_expand_compare): Likewise.
* config/m32c/m32c.c (m32c_prepare_shift): Likewise.
* config/mn10300/mn10300.c: Likewise.
* config/rl78/rl78.c: Likewise.
* config/s390/s390.c (s390_fix_long_loop_prediction): Likewise.
* config/sh/sh-mem.cc (sh_expand_cmpstr): Likewise.
(sh_expand_cmpnstr): Likewise.
(sh_expand_strlen): Likewise.
(sh_expand_setmem): Likewise.
* config/sh/sh.md: Likewise.
* emit-rtl.c (emit_pattern_before): Likewise.
* except.c: Likewise.
* final.c: Likewise.
* jump.c: Likewise.
From-SVN: r241768
Diffstat (limited to 'gcc/config/m32c')
-rw-r--r-- | gcc/config/m32c/m32c.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/m32c/m32c.c b/gcc/config/m32c/m32c.c index ccd9675..6077201 100644 --- a/gcc/config/m32c/m32c.c +++ b/gcc/config/m32c/m32c.c @@ -3781,13 +3781,13 @@ m32c_prepare_shift (rtx * operands, int scale, int shift_code) undefined to skip one of the comparisons. */ rtx count; - rtx label, tempvar; + rtx tempvar; rtx_insn *insn; emit_move_insn (operands[0], operands[1]); count = temp; - label = gen_label_rtx (); + rtx_code_label *label = gen_label_rtx (); LABEL_NUSES (label) ++; tempvar = gen_reg_rtx (mode); |