[gnu.gcc.bug] possible bug in optabs.c

self@BAYES.ARC.NASA.GOV (Matthew Self) (11/24/88)

  I spotted a fishy looking line in optabs.c in gcc 1.30.  Unless
ftruncdf2 is a special case, this is probably a typo.  It's probably
never mattered since most all FPU's can do ftruncdf with machine
instructions and never use the library call.

*** optabs.c-orig	Wed Nov 23 14:05:21 1988
--- optabs.c	Wed Nov 23 14:05:31 1988
***************
*** 1552,1558 ****
      ftrunc_optab->handlers[(int) DFmode].insn_code = CODE_FOR_ftruncdf2;
  #endif
    ftrunc_optab->handlers[(int) SFmode].lib_call = "_ftruncsf2";
!   ftrunc_optab->handlers[(int) DFmode].lib_call = "_ftruncsf2";
  
  #ifdef HAVE_andqi3
    if (HAVE_andqi3)
--- 1552,1558 ----
      ftrunc_optab->handlers[(int) DFmode].insn_code = CODE_FOR_ftruncdf2;
  #endif
    ftrunc_optab->handlers[(int) SFmode].lib_call = "_ftruncsf2";
!   ftrunc_optab->handlers[(int) DFmode].lib_call = "_ftruncdf2";
  
  #ifdef HAVE_andqi3
    if (HAVE_andqi3)