blob: 1e304f0bdf3ef0d24a0b0321dc64f2ef78c5b6a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* PR c/61534 */
/* { dg-options "-Wlogical-op" } */
extern int xxx;
#define XXX !xxx
int
test (void)
{
if (XXX && xxx) /* { dg-bogus "logical" } */
return 4;
else
return 0;
}
|