1 /* PR c/32061
2    { dg-do compile }
3    { dg-options "-Wlogical-op -Wall -Wextra" }
4 */
5 #define FORCE   1
6 #define FLAG    1
func(int resp,int flags)7 int func (int resp, int flags)
8 {
9   return (resp && (FORCE || (FLAG & flags)));
10 }
11