PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / c-c++-common / pr37743.c
blob2ea678e09a752f7a78a8413cf0db4dd0595bdcb2
1 /* PR c/37743 */
2 /* This needs to be run only on targets where __UINT32_TYPE__ is defined
3 to unsigned int. */
4 /* { dg-do compile { target *-*-linux-gnu* } } */
5 /* { dg-options "-Wformat" } */
7 int foo (const char *, ...) __attribute__ ((format (printf, 1, 2)));
9 void
10 bar (unsigned int x)
12 foo ("%x", __builtin_bswap32 (x));