public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/104633] New: [12 Regression] -Winfinite-recursion diagnoses fortify wrappers
@ 2022-02-22  8:55 rguenth at gcc dot gnu.org
  2022-02-22  8:56 ` [Bug c/104633] " rguenth at gcc dot gnu.org
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: rguenth at gcc dot gnu.org @ 2022-02-22  8:55 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 104633
           Summary: [12 Regression] -Winfinite-recursion diagnoses fortify
                    wrappers
           Product: gcc
           Version: 12.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: rguenth at gcc dot gnu.org
  Target Milestone: ---

extern inline __attribute__((always_inline))
int memcmp (const void * p, const void *q, unsigned long size)
{
  return __builtin_memcmp (p, q, size);
}

are diagnosed with

t.c: In function 'memcmp':
t.c:2:5: warning: infinite recursion detected [-Winfinite-recursion]
    2 | int memcmp (const void * p, const void *q, unsigned long size)
      |     ^~~~~~
t.c:4:10: note: recursive call
    4 |   return __builtin_memcmp (p, q, size);
      |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~

This pattern happens in glibc fortify wrappers (but need -Wsystem-headers in
addition to -Wall).  It's reportedly also triggering for kernel wrappers
in its fortify-string.h which does not get the benefit of doubt via
-Wsystem-headers.

These kind of wrappers are not recursions (I think the kernel doesn't have
'extern' on the inline), inline instances will not be called itself and
__builtin_XXX are never inline expanded(?).

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

end of thread, other threads:[~2022-02-23 11:50 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-22  8:55 [Bug c/104633] New: [12 Regression] -Winfinite-recursion diagnoses fortify wrappers rguenth at gcc dot gnu.org
2022-02-22  8:56 ` [Bug c/104633] " rguenth at gcc dot gnu.org
2022-02-22 10:02 ` rguenth at gcc dot gnu.org
2022-02-22 10:50 ` rguenth at gcc dot gnu.org
2022-02-22 11:16 ` jakub at gcc dot gnu.org
2022-02-22 12:35 ` jakub at gcc dot gnu.org
2022-02-23  4:04 ` egallager at gcc dot gnu.org
2022-02-23 11:04 ` cvs-commit at gcc dot gnu.org
2022-02-23 11:50 ` 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).