aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr77520.c
blob: b237639fb20f141f0f8e2a6a7f89eaa22d56fcbe (plain)
1
2
3
4
5
6
7
8
9
10
/* PR c/77520 - wrong value for extended ASCII characters in -Wformat message
   Verify that characters in the extended ASCII range are quoted and not
   allowed to be printed raw.  */
/* { dg-do compile } */
/* { dg-options "-Wformat" } */

void f (void)
{
  __builtin_printf ("%\x80");   /* { dg-warning "unknown conversion type character .\\\\x80. in format" } */
}