blob: 39b35573483ff266830c4c3ce5d5fec1bb4647b5 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-Wall -Werror" } */
extern int fl;
#define MAK (fl < 0 ? 1 : (fl ? -1 : 0))
int foo (int sz)
{
if (MAK) return 1;
return 0;
}