aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/c-c++-common/pr69543-2.c
blob: 4099fb2555f1a224c852f4195ea28678cae9e674 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-options "-Wuninitialized" } */

/* Verify disabling a warning, where both the _Pragma and the
   affected code are *not* in a macro.  */

void test (char yylval)
{
  char *yyvsp;
  _Pragma ("GCC diagnostic push")
  _Pragma ("GCC diagnostic ignored \"-Wuninitialized\"")
  _Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"")
  *++yyvsp = yylval;
  _Pragma ("GCC diagnostic pop")
}