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: [Patch, libgfortran] PR59771, PR59774, and PR59836 Bugs in FORMATs Fw.0, Gw.0, and Gw.d


> Yes OK, and I will commit for you.

Thanks Jerry.

While trying to back port the patch, I have found a leftover of my previous attempts:

  if  (ft != FMT_F && before == 0 && w > 0 && d == 0 && p == 0)

should be

  if  (ft != FMT_F && w > 0 && d == 0 && p == 0)

The second change was needed for 4.7 (still one failure after it):

	if (nzero_real == d && digits[0] >= char)

changed to

	if (digits[0] >= char)

I am attaching the updated patch.

Dominique

Attachment: patch-59774t2
Description: Binary data


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