diff options
Diffstat (limited to 'gcc/reload1.c')
-rw-r--r-- | gcc/reload1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/reload1.c b/gcc/reload1.c index 01943f3a7a0..02fda092605 100644 --- a/gcc/reload1.c +++ b/gcc/reload1.c @@ -7140,7 +7140,7 @@ do_output_reload (struct insn_chain *chain, struct reload *rl, int j) return; /* If is a JUMP_INSN, we can't support output reloads yet. */ - gcc_assert (!JUMP_P (insn)); + gcc_assert (NONJUMP_INSN_P (insn)); emit_output_reload_insns (chain, rld + j, j); } |