diff options
Diffstat (limited to 'gcc/reorg.c')
-rw-r--r-- | gcc/reorg.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/reorg.c b/gcc/reorg.c index 8134938..bdfcf88 100644 --- a/gcc/reorg.c +++ b/gcc/reorg.c @@ -2708,14 +2708,13 @@ fill_slots_from_thread (rtx_jump_insn *insn, rtx condition, && GET_CODE (PATTERN (new_thread)) != ASM_INPUT && asm_noperands (PATTERN (new_thread)) < 0) { - rtx pat = PATTERN (new_thread); rtx dest; rtx src; /* We know "new_thread" is an insn due to NONJUMP_INSN_P (new_thread) above. */ trial = as_a <rtx_insn *> (new_thread); - pat = PATTERN (trial); + rtx pat = PATTERN (trial); if (!NONJUMP_INSN_P (trial) || GET_CODE (pat) != SET |