diff options
author | David Malcolm <dmalcolm@redhat.com> | 2014-08-25 20:15:36 +0000 |
---|---|---|
committer | David Malcolm <dmalcolm@gcc.gnu.org> | 2014-08-25 20:15:36 +0000 |
commit | 3ffa95c25f3f98adb2a5cdb7419a5ffa1e7bc753 (patch) | |
tree | 32fa4b7ac18f8b0e215b46263ff0a089a70a3487 /gcc/cfgrtl.c | |
parent | d8ce2eae8471ebabcc3c7c8af1b0b992911543c3 (diff) | |
download | gcc-3ffa95c25f3f98adb2a5cdb7419a5ffa1e7bc753.tar.gz |
Convert edge_def.insns.r to rtx_insn *
gcc/
* basic-block.h (struct edge_def). Strengthen "r" within
union edge_def_insns from rtx to rtx_insn *.
* cfgexpand.c (pass_expand::execute): Remove now-redundant cast
from rtx to rtx_insn *. Strengthen local "insns" from rtx to
rtx_insn *.
* cfgrtl.c (commit_one_edge_insertion): Remove now-redundant cast
from rtx to rtx_insn *.
* cprop.c (find_bypass_set): Strengthen local "insn" from rtx to
rtx_insn *.
* postreload-gcse.c (reg_killed_on_edge): Likewise.
(reg_used_on_edge): Likewise.
* tree-cfg.c (gt_ggc_mx): New overload for rtx_insn *&.
(gt_pch_nx): New overload for rtx_insn *&.
* tree-outof-ssa.c (expand_phi_nodes): Strengthen local "insns"
from rtx to rtx_insn *.
From-SVN: r214471
Diffstat (limited to 'gcc/cfgrtl.c')
-rw-r--r-- | gcc/cfgrtl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cfgrtl.c b/gcc/cfgrtl.c index 458278c5e4d..5a7c1351f74 100644 --- a/gcc/cfgrtl.c +++ b/gcc/cfgrtl.c @@ -1950,8 +1950,8 @@ commit_one_edge_insertion (edge e) basic_block bb; /* Pull the insns off the edge now since the edge might go away. */ - insns = safe_as_a <rtx_insn *> (e->insns.r); - e->insns.r = NULL_RTX; + insns = e->insns.r; + e->insns.r = NULL; /* Figure out where to put these insns. If the destination has one predecessor, insert there. Except for the exit block. */ |