From d3548a5be95fd4b88a86a9c8f9d2c4918c524ab7 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Tue, 13 Apr 1993 17:23:14 -0400 Subject: [PATCH] (movXX): Third arg to emit_move_sequence is NULL_RTX. (movsi): Add missing return after abort. From-SVN: r4147 --- gcc/config/sparc/sparc.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/gcc/config/sparc/sparc.md b/gcc/config/sparc/sparc.md index 12d75e332f9..723a08d1fa6 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; }") -- 2.30.2