diff options
Diffstat (limited to 'gcc/postreload-gcse.c')
-rw-r--r-- | gcc/postreload-gcse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/postreload-gcse.c b/gcc/postreload-gcse.c index 81887678ee1..21ac6cd35f9 100644 --- a/gcc/postreload-gcse.c +++ b/gcc/postreload-gcse.c @@ -1115,8 +1115,8 @@ eliminate_partially_redundant_load (basic_block bb, rtx_insn *insn, /* Make sure we can generate a move from register avail_reg to dest. */ - rtx_insn *move = as_a <rtx_insn *> - (gen_move_insn (copy_rtx (dest), copy_rtx (avail_reg))); + rtx_insn *move = gen_move_insn (copy_rtx (dest), + copy_rtx (avail_reg)); extract_insn (move); if (! constrain_operands (1, get_preferred_alternatives (insn, pred_bb)) |