diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1993-04-13 17:23:14 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1993-04-13 17:23:14 -0400 |
commit | d3548a5be95fd4b88a86a9c8f9d2c4918c524ab7 (patch) | |
tree | 0dd7d37ddaab26c22dc5dd48b4579ae9cf4834ca /gcc | |
parent | a015279e4feb61d79d2515c8ea8b8a5d939eb41e (diff) | |
download | gcc-d3548a5be95fd4b88a86a9c8f9d2c4918c524ab7.zip gcc-d3548a5be95fd4b88a86a9c8f9d2c4918c524ab7.tar.gz gcc-d3548a5be95fd4b88a86a9c8f9d2c4918c524ab7.tar.bz2 |
(movXX): Third arg to emit_move_sequence is NULL_RTX.
(movsi): Add missing return after abort.
From-SVN: r4147
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/sparc/sparc.md | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/gcc/config/sparc/sparc.md b/gcc/config/sparc/sparc.md index 12d75e3..723a08d 100644 --- a/gcc/config/sparc/sparc.md +++ b/gcc/config/sparc/sparc.md @@ -778,7 +778,7 @@ "" " { - if (emit_move_sequence (operands, SImode, 0)) + if (emit_move_sequence (operands, SImode, NULL_RTX)) DONE; }") @@ -867,6 +867,7 @@ } else abort (); + return \"\"; }" [(set_attr "type" "move") (set_attr "length" "2")]) @@ -951,7 +952,7 @@ "" " { - if (emit_move_sequence (operands, HImode, 0)) + if (emit_move_sequence (operands, HImode, NULL_RTX)) DONE; }") @@ -992,7 +993,7 @@ "" " { - if (emit_move_sequence (operands, QImode, 0)) + if (emit_move_sequence (operands, QImode, NULL_RTX)) DONE; }") @@ -1105,7 +1106,7 @@ "" " { - if (emit_move_sequence (operands, TFmode, 0)) + if (emit_move_sequence (operands, TFmode, NULL_RTX)) DONE; }") @@ -1189,7 +1190,7 @@ "" " { - if (emit_move_sequence (operands, DFmode, 0)) + if (emit_move_sequence (operands, DFmode, NULL_RTX)) DONE; }") @@ -1246,7 +1247,7 @@ "" " { - if (emit_move_sequence (operands, DImode, 0)) + if (emit_move_sequence (operands, DImode, NULL_RTX)) DONE; }") @@ -1295,7 +1296,7 @@ "" " { - if (emit_move_sequence (operands, SFmode, 0)) + if (emit_move_sequence (operands, SFmode, NULL_RTX)) DONE; }") |