public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/104148] New: [11/12 Regression] -Wformat warning no longer warns about () wrapped args since r11-2457
@ 2022-01-20 18:14 jakub at gcc dot gnu.org
  2022-01-20 18:15 ` [Bug c++/104148] " jakub at gcc dot gnu.org
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: jakub at gcc dot gnu.org @ 2022-01-20 18:14 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 104148
           Summary: [11/12 Regression] -Wformat warning no longer warns
                    about () wrapped args since r11-2457
           Product: gcc
           Version: 12.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jakub at gcc dot gnu.org
  Target Milestone: ---

Since r11-2457-gdf5cf47a978aaeb53fc2b18ff0b22eb4531a27d8 we get with -Wformat
just 14 warnings in C++ instead of 24 that were reported before that commit and
that are reported by C.
char *foo (const char *) __attribute__((format_arg(1)));
void bar (const char *, ...) __attribute__((format(printf, 1, 2)));

void
baz (int x)
{
  bar ("%ld", x);
  bar (x ? "%ld" : "%ld", x);
  bar (x ? "%ld" : "%lld", x);
  bar (foo ("%ld"), x);
  bar (x ? foo ("%ld") : "%ld", x);
  bar (x ? foo ("%ld") : "%lld", x);
  bar (foo (x ? "%ld" : "%ld"), x);
  bar (foo (x ? "%ld" : "%lld"), x);
  bar (("%ld"), x);
  bar ((x ? "%ld" : "%ld"), x);
  bar ((x ? "%ld" : "%lld"), x);
  bar ((foo ("%ld")), x);
  bar ((x ? foo ("%ld") : "%ld"), x);
  bar ((x ? foo ("%ld") : "%lld"), x);
  bar ((foo (x ? "%ld" : "%ld")), x);
  bar ((foo (x ? "%ld" : "%lld")), x);
}

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

end of thread, other threads:[~2022-01-21 21:47 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-20 18:14 [Bug c++/104148] New: [11/12 Regression] -Wformat warning no longer warns about () wrapped args since r11-2457 jakub at gcc dot gnu.org
2022-01-20 18:15 ` [Bug c++/104148] " jakub at gcc dot gnu.org
2022-01-20 18:18 ` jakub at gcc dot gnu.org
2022-01-20 18:50 ` jakub at gcc dot gnu.org
2022-01-20 19:01 ` jakub at gcc dot gnu.org
2022-01-20 19:11 ` msebor at gcc dot gnu.org
2022-01-20 19:49 ` jakub at gcc dot gnu.org
2022-01-21 21:45 ` cvs-commit at gcc dot gnu.org
2022-01-21 21:47 ` [Bug c++/104148] [11 " 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).