public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libgcc/67624] New: arm/fp16.c __gnu_f2h_internal has wrong pattern for INF/NAN
@ 2015-09-18 13:11 pekka.jaaskelainen at parmance dot com
  2015-09-18 17:00 ` [Bug libgcc/67624] " rearnsha at gcc dot gnu.org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: pekka.jaaskelainen at parmance dot com @ 2015-09-18 13:11 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67624

            Bug ID: 67624
           Summary: arm/fp16.c __gnu_f2h_internal has wrong pattern for
                    INF/NAN
           Product: gcc
           Version: 4.9.1
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: libgcc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: pekka.jaaskelainen at parmance dot com
  Target Milestone: ---

I believe the f2h conversion routine uses wrong mask for INF/NAN in the early
shortcut. It seems to be the case also in the gcc HEAD.

This should fix it:

--- arm/fp16.c  2015-09-18 15:53:51.069011932 +0300
+++ fp16.c      2015-09-18 15:50:50.653013393 +0300
@@ -35,7 +35,7 @@
     {
       if (!ieee)
        return sign;
-      return sign | 0x7e00 | (mantissa >> 13);
+      return sign | 0x7c00 | (mantissa >> 13);
     }

   if (aexp == 0 && mantissa == 0)


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-09-24  9:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-18 13:11 [Bug libgcc/67624] New: arm/fp16.c __gnu_f2h_internal has wrong pattern for INF/NAN pekka.jaaskelainen at parmance dot com
2015-09-18 17:00 ` [Bug libgcc/67624] " rearnsha at gcc dot gnu.org
2015-09-18 22:22 ` joseph at codesourcery dot com
2015-09-24  9:40 ` rearnsha at gcc dot gnu.org
2015-09-24  9:41 ` rearnsha at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).