blob: cd71e7e118822e7c5df4f3713a2f5515b63662e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/* { dg-options "-Wuninitialized" } */
/* Verify disabling a warning, where both the _Pragma and the
affected code are within (different) macros. */
/* TODO: XFAIL: both C and C++ erroneously fail to suppress the warning
The warning is reported at the macro definition location, rather than
the macro expansion location. */
# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \
_Pragma ("GCC diagnostic push") \
_Pragma ("GCC diagnostic ignored \"-Wuninitialized\"")\
_Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"")
# define YY_IGNORE_MAYBE_UNINITIALIZED_END \
_Pragma ("GCC diagnostic pop")
#define WARNABLE_CODE *++yyvsp = yylval; /* { dg-bogus "used uninitialized" "" { xfail *-*-* } } */
void test (char yylval)
{
char *yyvsp; /* { dg-bogus "declared here" "" { xfail *-*-* } } */
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
WARNABLE_CODE
YY_IGNORE_MAYBE_UNINITIALIZED_END
}
|