expr.c (convert_move): Handle truncation from TQFmode to QFmode.

* expr.c (convert_move): Handle truncation from TQFmode to QFmode.
From Christian Iseli.

From-SVN: r15054
This commit is contained in:
Jeffrey A Law 1997-09-03 05:33:06 +00:00 committed by Jeff Law
parent f04e7122c8
commit 704af6a15f
2 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Tue Sep 2 23:33:33 1997 Jeffrey A Law (law@cygnus.com)
* expr.c (convert_move): Handle truncation from TQFmode to QFmode.
Wed Sep 3 02:09:30 1997 Torbjorn Granlund <tege@pdc.kth..se>
* except.c (eh_outer_context): Expand masking operation using

View File

@ -621,6 +621,13 @@ convert_move (to, from, unsignedp)
return;
}
#endif
#ifdef HAVE_trunctqfqf2
if (HAVE_trunctqfqf2 && from_mode == TQFmode && to_mode == QFmode)
{
emit_unop_insn (CODE_FOR_trunctqfqf2, to, from, UNKNOWN);
return;
}
#endif
#ifdef HAVE_truncsfqf2
if (HAVE_truncsfqf2 && from_mode == SFmode && to_mode == QFmode)
{