diff options
author | David Malcolm <dmalcolm@redhat.com> | 2014-09-09 15:20:07 +0000 |
---|---|---|
committer | David Malcolm <dmalcolm@gcc.gnu.org> | 2014-09-09 15:20:07 +0000 |
commit | a1950df341b382e455df8f1e58fe29242cc55c08 (patch) | |
tree | 399a1b396970c0a0432d272941b58678b1185cf2 /gcc/dwarf2out.c | |
parent | d6e1e8b8d1663dd2b25bc9e27ca099568848c641 (diff) | |
download | gcc-a1950df341b382e455df8f1e58fe29242cc55c08.zip gcc-a1950df341b382e455df8f1e58fe29242cc55c08.tar.gz gcc-a1950df341b382e455df8f1e58fe29242cc55c08.tar.bz2 |
INSN_LOCATION takes an rtx_insn
gcc/ChangeLog:
2014-09-09 David Malcolm <dmalcolm@redhat.com>
* rtl.h (INSN_LOCATION): Strengthen param from const_rtx to
const rtx_insn *, and from rtx to rtx_insn * for the other
overloaded variant.
(RTL_LOCATION): Add a checked cast to rtx_insn * when invoking
INSN_LOCATION, since we know INSN_P holds.
(insn_line): Strengthen param from const_rtx to const rtx_insn *.
(insn_file): Likewise.
(insn_scope): Likewise.
(insn_location): Likewise.
* config/mips/mips.c (mips16_gp_pseudo_reg): Strengthen local
"insn" from rtx to rtx_insn *, introducing a new local rtx "set"
for the result of gen_load_const_gp.
* config/rs6000/rs6000-protos.h (output_call): Strengthen first
param from rtx to rtx_insn *.
* config/rs6000/rs6000.c (output_call): Likewise.
* dwarf2out.c (dwarf2out_var_location): Likewise for local "prev",
introducing a checked cast to rtx_sequence * and use of the insn
method.
* emit-rtl.c (emit_copy_of_insn_after): Strengthen both params
from rtx to rtx_insn *.
(insn_scope): Strengthen param from const_rtx to const rtx_insn *.
(insn_line): Likewise.
(insn_file): Likewise.
(insn_location): Likewise.
* emit-rtl.h (emit_copy_of_insn_after): Strengthen both params
from rtx to rtx_insn *.
* print-rtl.c (print_rtx): Introduce local "in_insn" via a checked
cast, using it for calls to INSN_HAS_LOCATION and insn_location.
* recog.c (peep2_attempt): Introduce local rtx_insn * "peepinsn"
via a checked cast.
* reorg.c (relax_delay_slots): Strengthen locals named "after"
from rtx to rtx_insn *; use methods of "pat" for type-safety.
From-SVN: r215084
Diffstat (limited to 'gcc/dwarf2out.c')
-rw-r--r-- | gcc/dwarf2out.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 23a80d8..0d5896c 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -21435,7 +21435,8 @@ dwarf2out_var_location (rtx_insn *loc_note) { struct call_arg_loc_node *ca_loc = ggc_cleared_alloc<call_arg_loc_node> (); - rtx prev = prev_real_insn (loc_note), x; + rtx_insn *prev = prev_real_insn (loc_note); + rtx x; ca_loc->call_arg_loc_note = loc_note; ca_loc->next = NULL; ca_loc->label = last_label; @@ -21445,7 +21446,7 @@ dwarf2out_var_location (rtx_insn *loc_note) && GET_CODE (PATTERN (prev)) == SEQUENCE && CALL_P (XVECEXP (PATTERN (prev), 0, 0))))); if (!CALL_P (prev)) - prev = XVECEXP (PATTERN (prev), 0, 0); + prev = as_a <rtx_sequence *> (PATTERN (prev))->insn (0); ca_loc->tail_call_p = SIBLING_CALL_P (prev); x = get_call_rtx_from (PATTERN (prev)); if (x) |