diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-10-04 00:39:27 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-10-04 00:39:27 +0000 |
commit | 435f92c16ae7a1da3f5dce46b9f4455c0d31e358 (patch) | |
tree | a6d63de3b418b234ae0112937d408c7dbc1e4777 /gcc/config/i960 | |
parent | 13384314757073fe3c59dcc9c1e1fd76e624407b (diff) | |
download | gcc-435f92c16ae7a1da3f5dce46b9f4455c0d31e358.tar.gz |
* config/i960/i960.md (call, call_value): Use emit_call_insn.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@57795 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/i960')
-rw-r--r-- | gcc/config/i960/i960.md | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gcc/config/i960/i960.md b/gcc/config/i960/i960.md index 91fb78b5604..c5b32da9c83 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; }") |