aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/Wparentheses-1.c
blob: d6e86eb489b40f351a418844a363b394b2792c1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Copyright (C) 2001 Free Software Foundation, Inc.  */

/* { dg-do compile } */
/* { dg-options -Wparentheses } */

/* Source: Neil Booth, 1 Nov 2001.  PR 3170, 3422 - bogus warnings
   about suggesting parentheses.  */

int foo (int a, int b)
{
  int c = (a && b) || 0;	/* { dg-bogus "suggest parentheses" }  */
  c = a && b || 0;		/* { dg-warning "suggest parentheses" }  */

  return (a && b && 1) || 0;	/* { dg-bogus "suggest parentheses" }  */
}