aboutsummaryrefslogtreecommitdiff
path: root/gcc/df-core.c
diff options
context:
space:
mode:
authorDavid Malcolm <dmalcolm@redhat.com>2014-08-22 14:17:25 +0000
committerDavid Malcolm <dmalcolm@gcc.gnu.org>2014-08-22 14:17:25 +0000
commitdd3eed93e9e8da1604b38c895c718c90238cf2c6 (patch)
tree4b9a2316fbf53c53c4124f01301de3c5cc6d4b50 /gcc/df-core.c
parent9774f20d040b8068d9f55e2df7e1d3d3c02f0819 (diff)
downloadgcc-dd3eed93e9e8da1604b38c895c718c90238cf2c6.zip
gcc-dd3eed93e9e8da1604b38c895c718c90238cf2c6.tar.gz
gcc-dd3eed93e9e8da1604b38c895c718c90238cf2c6.tar.bz2
df-*.c: Use rtx_insn
gcc/ * df-core.c (df_bb_regno_first_def_find): Strengthen local "insn" from rtx to rtx_insn *. (df_bb_regno_last_def_find): Likewise. * df-problems.c (df_rd_bb_local_compute): Likewise. (df_lr_bb_local_compute): Likewise. (df_live_bb_local_compute): Likewise. (df_chain_remove_problem): Likewise. (df_chain_create_bb): Likewise. (df_word_lr_bb_local_compute): Likewise. (df_remove_dead_eq_notes): Likewise for param "insn". (df_note_bb_compute): Likewise for local "insn". (simulate_backwards_to_point): Likewise. (df_md_bb_local_compute): Likewise. * df-scan.c (df_scan_free_bb_info): Likewise. (df_scan_start_dump): Likewise. (df_scan_start_block): Likewise. (df_install_ref_incremental): Likewise for local "insn". (df_insn_rescan_all): Likewise. (df_reorganize_refs_by_reg_by_insn): Likewise. (df_reorganize_refs_by_insn_bb): Likewise. (df_recompute_luids): Likewise. (df_bb_refs_record): Likewise. (df_update_entry_exit_and_calls): Likewise. (df_bb_verify): Likewise. From-SVN: r214318
Diffstat (limited to 'gcc/df-core.c')
-rw-r--r--gcc/df-core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/df-core.c b/gcc/df-core.c
index 5d32fa3..5c5b1ae 100644
--- a/gcc/df-core.c
+++ b/gcc/df-core.c
@@ -1943,7 +1943,7 @@ df_set_clean_cfg (void)
df_ref
df_bb_regno_first_def_find (basic_block bb, unsigned int regno)
{
- rtx insn;
+ rtx_insn *insn;
df_ref def;
FOR_BB_INSNS (bb, insn)
@@ -1964,7 +1964,7 @@ df_bb_regno_first_def_find (basic_block bb, unsigned int regno)
df_ref
df_bb_regno_last_def_find (basic_block bb, unsigned int regno)
{
- rtx insn;
+ rtx_insn *insn;
df_ref def;
FOR_BB_INSNS_REVERSE (bb, insn)