OSDN Git Service

(output_call): Add missing arg to output_asm_insn.
authorrms <rms@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 29 Apr 1993 16:51:53 +0000 (16:51 +0000)
committerrms <rms@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 29 Apr 1993 16:51:53 +0000 (16:51 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@4273 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/config/convex/convex.c

index 9f49115..e3a2bad 100644 (file)
@@ -192,7 +192,7 @@ output_call (insn, address, argcount)
 
   /* If there are args, point AP to them. */
   if (set_ap)
-    output_asm_insn ("mov sp,ap");
+    output_asm_insn ("mov sp,ap", 0);
 
   /* If we are passing an arg count, convert it to words and push it. */
   if (TARGET_ARGCOUNT)
@@ -207,7 +207,7 @@ output_call (insn, address, argcount)
   /* If we clobbered AP, reload it if it is live. */
   if (set_ap)
     if (ap_reload_needed (insn))
-      output_asm_insn ("ld.w 12(fp),ap");
+      output_asm_insn ("ld.w 12(fp),ap", 0);
 
   /* If we pushed an arg count, pop it and the args. */
   if (TARGET_ARGCOUNT)