aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/config/i960/i960.md9
2 files changed, 9 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 3fdac7a..5160372 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2002-10-03 Richard Henderson <rth@redhat.com>
+
+ * config/i960/i960.md (call, call_value): Use emit_call_insn.
+
2002-10-03 Steve Ellcey <sje@cup.hp.com>
* config/pa/pa64-hpux.h (INIT_ENVIRONMENT): New.
diff --git a/gcc/config/i960/i960.md b/gcc/config/i960/i960.md
index 91fb78b..c5b32da 100644
--- a/gcc/config/i960/i960.md
+++ b/gcc/config/i960/i960.md
@@ -2292,8 +2292,8 @@
""
"
{
- emit_insn (gen_call_internal (operands[0], operands[1],
- virtual_outgoing_args_rtx));
+ emit_call_insn (gen_call_internal (operands[0], operands[1],
+ virtual_outgoing_args_rtx));
DONE;
}")
@@ -2322,8 +2322,9 @@
""
"
{
- emit_insn (gen_call_value_internal (operands[0], operands[1], operands[2],
- virtual_outgoing_args_rtx));
+ emit_call_insn (gen_call_value_internal (operands[0], operands[1],
+ operands[2],
+ virtual_outgoing_args_rtx));
DONE;
}")