aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/convex/convex.c
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1993-04-29 16:51:53 +0000
committerRichard Stallman <rms@gnu.org>1993-04-29 16:51:53 +0000
commit32c454f6c71d154c5f51188ce44f82727db8d0a7 (patch)
tree3f503b2c1c530e2fe93ecc84f0f519a05d7edb09 /gcc/config/convex/convex.c
parent4782d5b5ad423c537add5883de304298c5e78909 (diff)
downloadgcc-32c454f6c71d154c5f51188ce44f82727db8d0a7.zip
gcc-32c454f6c71d154c5f51188ce44f82727db8d0a7.tar.gz
gcc-32c454f6c71d154c5f51188ce44f82727db8d0a7.tar.bz2
(output_call): Add missing arg to output_asm_insn.
From-SVN: r4273
Diffstat (limited to 'gcc/config/convex/convex.c')
-rw-r--r--gcc/config/convex/convex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/convex/convex.c b/gcc/config/convex/convex.c
index 9f49115..e3a2bad 100644
--- a/gcc/config/convex/convex.c
+++ b/gcc/config/convex/convex.c
@@ -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)