public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libgcc/114689] New: [14 Regression] libgcc/config/m68k/fpgnulib.c:305: Suspicious coding ?
@ 2024-04-11  9:00 dcb314 at hotmail dot com
  2024-04-11 10:35 ` [Bug libgcc/114689] " rguenth at gcc dot gnu.org
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: dcb314 at hotmail dot com @ 2024-04-11  9:00 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 114689
           Summary: [14 Regression] libgcc/config/m68k/fpgnulib.c:305:
                    Suspicious coding ?
           Product: gcc
           Version: 14.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libgcc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: dcb314 at hotmail dot com
  Target Milestone: ---

Static analyser cppcheck says:

libgcc/config/m68k/fpgnulib.c:305:37: style: Boolean result is used in bitwise
operation. Clarify expression with parentheses. [clarifyCondition]

Source code is

     mant = mant >> 1 | (mant & 1) | !!sticky;

Perhaps

     mant = (mant >> 1) | (mant & 1) | !!sticky;

was intended. 

This problem doesn't exist in the source code of gcc-13.2

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

end of thread, other threads:[~2024-04-15 15:48 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-11  9:00 [Bug libgcc/114689] New: [14 Regression] libgcc/config/m68k/fpgnulib.c:305: Suspicious coding ? dcb314 at hotmail dot com
2024-04-11 10:35 ` [Bug libgcc/114689] " rguenth at gcc dot gnu.org
2024-04-12  8:30 ` jakub at gcc dot gnu.org
2024-04-12 10:13 ` schwab@linux-m68k.org
2024-04-12 10:16 ` jakub at gcc dot gnu.org
2024-04-12 13:33 ` law at gcc dot gnu.org
2024-04-12 21:47 ` dcb314 at hotmail dot com
2024-04-12 21:56 ` jakub at gcc dot gnu.org
2024-04-13  7:06 ` dcb314 at hotmail dot com
2024-04-15 15:46 ` cvs-commit at gcc dot gnu.org
2024-04-15 15:48 ` jakub 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).