This is the mail archive of the gcc-patches@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]
Other format: [Raw text]

Re: RFC patch: Add libquadmath - and use it in gfortran (round two)


I am currently bootstrapping the patches. I am curious what these tmp1 and tmp2 are about? Also see them on the real128 versions as well.

#if defined(GFC_REAL_16_IS_FLOAT128)
void
transfer_complex128 (st_parameter_dt *dtp, void *p, int kind)
{
  static void *tmp1 = quadmath_strtopQ;
  static void *tmp2 = quadmath_dtoaq;

  transfer_complex (dtp, p, kind);
}


void transfer_complex_write128 (st_parameter_dt *dtp, void *p, int kind) { static void *tmp1 = quadmath_strtopQ; static void *tmp2 = quadmath_dtoaq;

  transfer_complex (dtp, p, kind);
}
#endif


Jerry



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