This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Missing HAVE_trunctqfqf2


Hello again,

All the HAVE_trunc* are defined in expr.c except for one (that I happen to use... ;-)
Here is a trivial fix.

Cheers,
					Christian

*** expr.c.orig	Mon Aug 11 17:57:06 1997
--- expr.c	Mon Sep  1 13:53:41 1997
*************** convert_move (to, from, unsignedp)
*** 621,626 ****
--- 621,633 ----
  	  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)
  	{


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]