diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1996-06-03 16:36:11 -0700 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1996-06-03 16:36:11 -0700 |
commit | b067d889bfd736310a61fdb62838f3b1f13ae47c (patch) | |
tree | e2079e306e272f072845f32deac9dcd6037b486e | |
parent | 9315fc066ee6743b60ecaf0b3d8dd9cf6f7ddd34 (diff) | |
download | gcc-b067d889bfd736310a61fdb62838f3b1f13ae47c.zip gcc-b067d889bfd736310a61fdb62838f3b1f13ae47c.tar.gz gcc-b067d889bfd736310a61fdb62838f3b1f13ae47c.tar.bz2 |
(tablejump_internal4+1): Fix typo in condition.
From-SVN: r12149
-rw-r--r-- | gcc/config/mips/mips.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/mips/mips.md b/gcc/config/mips/mips.md index 18bc638..8b557e5 100644 --- a/gcc/config/mips/mips.md +++ b/gcc/config/mips/mips.md @@ -5953,7 +5953,7 @@ move\\t%0,%z4\\n\\ [(set (pc) (plus:DI (match_operand:DI 0 "register_operand" "d") (label_ref:DI (match_operand:SI 1 "" ""))))] - "!TARGET_LONG64 && next_active_insn (insn) != 0 + "TARGET_LONG64 && next_active_insn (insn) != 0 && GET_CODE (PATTERN (next_active_insn (insn))) == ADDR_DIFF_VEC && PREV_INSN (next_active_insn (insn)) == operands[1]" "%*j\\t%0" |