(untyped_call): New pattern.
authorTom Wood <wood@gnu.org>
Tue, 23 Mar 1993 12:51:52 +0000 (12:51 +0000)
committerTom Wood <wood@gnu.org>
Tue, 23 Mar 1993 12:51:52 +0000 (12:51 +0000)
From-SVN: r3840

gcc/config/mips/mips.md

index 57ae3cb273ba4c48e3b86e99864718d83acbf18c..56886b3a95fc1b299f1b24fe7da491ad2a8ecc7a 100644 (file)
@@ -4203,6 +4203,30 @@ move\\t%0,%z4\\n\\
    (set_attr "mode"    "none")
    (set_attr "length"  "1")])
 
+;; Call subroutine returning any type.
+
+(define_expand "untyped_call"
+  [(parallel [(call (match_operand 0 "" "")
+                   (const_int 0))
+             (match_operand 1 "" "")
+             (match_operand 2 "" "")])]
+  ""
+  "
+{
+  int i;
+
+  emit_call_insn (gen_call (operands[0], const0_rtx, NULL, const0_rtx));
+
+  for (i = 0; i < XVECLEN (operands[2], 0); i++)
+    {
+      rtx set = XVECEXP (operands[2], 0, i);
+      emit_move_insn (SET_DEST (set), SET_SRC (set));
+    }
+
+  emit_insn (gen_blockage ());
+
+  DONE;
+}")
 \f
 ;;
 ;;  ....................