diff options
author | Richard Stallman <rms@gnu.org> | 1993-06-25 04:51:39 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-06-25 04:51:39 +0000 |
commit | e7d7b3dcb3c2132eb6d57ed6bacb60763292bfd6 (patch) | |
tree | ccb39b38b5b75aba992762dd7a9faad52f6e107d /gcc | |
parent | f7f1b4a40e67f21c58dbc9448e68efce88f2b020 (diff) | |
download | gcc-e7d7b3dcb3c2132eb6d57ed6bacb60763292bfd6.zip gcc-e7d7b3dcb3c2132eb6d57ed6bacb60763292bfd6.tar.gz gcc-e7d7b3dcb3c2132eb6d57ed6bacb60763292bfd6.tar.bz2 |
(negdi2, negdi2_internal): Renamed from negdi3...
From-SVN: r4722
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/mips/mips.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/mips/mips.md b/gcc/config/mips/mips.md index 2da9db7..3a0b684 100644 --- a/gcc/config/mips/mips.md +++ b/gcc/config/mips/mips.md @@ -1047,14 +1047,14 @@ move\\t%0,%z4\\n\\ (set_attr "mode" "SI") (set_attr "length" "1")]) -(define_expand "negdi3" +(define_expand "negdi2" [(parallel [(set (match_operand:DI 0 "register_operand" "=d") (neg:DI (match_operand:DI 1 "register_operand" "d"))) (clobber (match_dup 2))])] "!TARGET_DEBUG_G_MODE" "operands[2] = gen_reg_rtx (SImode);") -(define_insn "negdi3_internal" +(define_insn "negdi2_internal" [(set (match_operand:DI 0 "register_operand" "=d") (neg:DI (match_operand:DI 1 "register_operand" "d"))) (clobber (match_operand:SI 2 "register_operand" "=d"))] |