blob: dc1a916f1bbd19f5c4d39ec8e452da99d25ad64f [file] [log] [blame]
/* PR c/32061
{ dg-do compile }
{ dg-options "-Wlogical-op -Wall -Wextra" }
*/
#define FORCE 1
#define FLAG 1
int func (int resp, int flags)
{
return (resp && (FORCE || (FLAG & flags)));
}