diff options
Diffstat (limited to 'gcc/config/lm32/lm32.c')
-rw-r--r-- | gcc/config/lm32/lm32.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/config/lm32/lm32.c b/gcc/config/lm32/lm32.c index b13329721a4..df58eebb090 100644 --- a/gcc/config/lm32/lm32.c +++ b/gcc/config/lm32/lm32.c @@ -237,9 +237,8 @@ gen_int_relational (enum rtx_code code, /* Generate conditional branch instruction. */ cond = gen_rtx_fmt_ee (code, mode, cmp0, cmp1); label = gen_rtx_LABEL_REF (VOIDmode, destination); - insn = gen_rtx_SET (VOIDmode, pc_rtx, - gen_rtx_IF_THEN_ELSE (VOIDmode, - cond, label, pc_rtx)); + insn = gen_rtx_SET (pc_rtx, gen_rtx_IF_THEN_ELSE (VOIDmode, + cond, label, pc_rtx)); emit_jump_insn (insn); } else |