bd52d17906
too large to list, but see: http://gcc.gnu.org/gcc-3.4/changes.html http://gcc.gnu.org/gcc-4.0/changes.html http://gcc.gnu.org/gcc-4.1/changes.html for the details.
16 lines
453 B
C
16 lines
453 B
C
/* 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" } */
|
|
}
|