diff options
Diffstat (limited to 'gcc/config/m68k/m68k.c')
-rw-r--r-- | gcc/config/m68k/m68k.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gcc/config/m68k/m68k.c b/gcc/config/m68k/m68k.c index a871062..fa6d890 100644 --- a/gcc/config/m68k/m68k.c +++ b/gcc/config/m68k/m68k.c @@ -5414,7 +5414,7 @@ sched_address_type (enum machine_mode mode, rtx addr_rtx) /* Return X or Y (depending on OPX_P) operand of INSN. */ static rtx -sched_get_operand (rtx insn, bool opx_p) +sched_get_operand (rtx_insn *insn, bool opx_p) { int i; @@ -5437,7 +5437,7 @@ sched_get_operand (rtx insn, bool opx_p) /* Return type of INSN's operand X (if OPX_P) or operand Y (if !OPX_P). If ADDRESS_P is true, return type of memory location operand refers to. */ static enum attr_op_type -sched_attr_op_type (rtx insn, bool opx_p, bool address_p) +sched_attr_op_type (rtx_insn *insn, bool opx_p, bool address_p) { rtx op; @@ -5556,7 +5556,7 @@ sched_attr_op_type (rtx insn, bool opx_p, bool address_p) Return type of INSN's operand X. If ADDRESS_P is true, return type of memory location operand refers to. */ enum attr_opx_type -m68k_sched_attr_opx_type (rtx insn, int address_p) +m68k_sched_attr_opx_type (rtx_insn *insn, int address_p) { switch (sched_attr_op_type (insn, true, address_p != 0)) { @@ -5599,7 +5599,7 @@ m68k_sched_attr_opx_type (rtx insn, int address_p) Return type of INSN's operand Y. If ADDRESS_P is true, return type of memory location operand refers to. */ enum attr_opy_type -m68k_sched_attr_opy_type (rtx insn, int address_p) +m68k_sched_attr_opy_type (rtx_insn *insn, int address_p) { switch (sched_attr_op_type (insn, false, address_p != 0)) { @@ -6289,7 +6289,7 @@ m68k_sched_dfa_post_advance_cycle (void) /* Return X or Y (depending on OPX_P) operand of INSN, if it is an integer register, or NULL overwise. */ static rtx -sched_get_reg_operand (rtx insn, bool opx_p) +sched_get_reg_operand (rtx_insn *insn, bool opx_p) { rtx op = NULL; @@ -6338,7 +6338,7 @@ sched_mem_operand_p (rtx insn, bool opx_p) /* Return X or Y (depending on OPX_P) operand of INSN, if it is a MEM, or NULL overwise. */ static rtx -sched_get_mem_operand (rtx insn, bool must_read_p, bool must_write_p) +sched_get_mem_operand (rtx_insn *insn, bool must_read_p, bool must_write_p) { bool opx_p; bool opy_p; @@ -6371,7 +6371,7 @@ sched_get_mem_operand (rtx insn, bool must_read_p, bool must_write_p) /* Return non-zero if PRO modifies register used as part of address in CON. */ int -m68k_sched_address_bypass_p (rtx pro, rtx con) +m68k_sched_address_bypass_p (rtx_insn *pro, rtx_insn *con) { rtx pro_x; rtx con_mem_read; @@ -6393,7 +6393,7 @@ m68k_sched_address_bypass_p (rtx pro, rtx con) if PRO modifies register used as index in CON, return scale of indexed memory access in CON. Return zero overwise. */ static int -sched_get_indexed_address_scale (rtx pro, rtx con) +sched_get_indexed_address_scale (rtx_insn *pro, rtx_insn *con) { rtx reg; rtx mem; @@ -6422,7 +6422,7 @@ sched_get_indexed_address_scale (rtx pro, rtx con) /* Return non-zero if PRO modifies register used as index with scale 2 or 4 in CON. */ int -m68k_sched_indexed_address_bypass_p (rtx pro, rtx con) +m68k_sched_indexed_address_bypass_p (rtx_insn *pro, rtx_insn *con) { gcc_assert (sched_cfv4_bypass_data.pro == NULL && sched_cfv4_bypass_data.con == NULL |