aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/c-c++-common/pr37743.c
blob: 2ea678e09a752f7a78a8413cf0db4dd0595bdcb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* PR c/37743 */
/* This needs to be run only on targets where __UINT32_TYPE__ is defined
   to unsigned int.  */
/* { dg-do compile { target *-*-linux-gnu* } } */
/* { dg-options "-Wformat" } */

int foo (const char *, ...) __attribute__ ((format (printf, 1, 2)));

void
bar (unsigned int x)
{
  foo ("%x", __builtin_bswap32 (x));
}