mep.md (sibcall_internal): Include non-toggling non-jmp case.
* config/mep/mep.md (sibcall_internal): Include non-toggling non-jmp case. (sibcall_value_internal): Likewise. From-SVN: r149649
This commit is contained in:
parent
2a4c03661e
commit
54a1e1d016
2 changed files with 14 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
2009-07-14 DJ Delorie <dj@redhat.com>
|
||||
|
||||
* config/mep/mep.md (sibcall_internal): Include non-toggling
|
||||
non-jmp case.
|
||||
(sibcall_value_internal): Likewise.
|
||||
|
||||
2009-07-14 Taras Glek <tglek@mozilla.com>
|
||||
Rafael Espindola <espindola@google.com>
|
||||
|
||||
|
|
|
@ -1925,6 +1925,10 @@
|
|||
{
|
||||
if (mep_vliw_jmp_match (operands[2]))
|
||||
return "jmp\t%0";
|
||||
else if (mep_vliw_mode_match (operands[2]))
|
||||
return
|
||||
"movu $11, %0\n\
|
||||
jmp $11";
|
||||
else
|
||||
return
|
||||
"ldc $12, $lp\n\
|
||||
|
@ -1996,6 +2000,10 @@
|
|||
{
|
||||
if (mep_vliw_jmp_match (operands[3]))
|
||||
return "jmp\t%1";
|
||||
else if (mep_vliw_mode_match (operands[3]))
|
||||
return
|
||||
"movu $11, %1\n\
|
||||
jmp $11";
|
||||
else
|
||||
return
|
||||
"ldc $12, $lp\n\
|
||||
|
|
Loading…
Add table
Reference in a new issue