aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/Wparentheses-2.c
AgeCommit message (Collapse)AuthorFilesLines
2007-01-31c-common.c (warn_about_parentheses): Separate warning about un-parenthized ↵Dirk Mueller1-18/+72
sequence of comparison operators from the... 2007-01-31 Dirk Mueller <dmueller@suse.de> * c-common.c (warn_about_parentheses): Separate warning about un-parenthized sequence of comparison operators from the one which is supposed to warn about x <= y <= z. * testsuite/gcc.dg/Wparentheses-2.c: Update and add new tests. From-SVN: r121421
2004-07-17c-typeck.c (parser_build_binary_op): Condition warnings for X<=Y<=Z on ↵Joseph Myers1-0/+67
-Wparentheses instead of -Wextra. * c-typeck.c (parser_build_binary_op): Condition warnings for X<=Y<=Z on -Wparentheses instead of -Wextra. * doc/invoke.texi: Update. Document that most of -Wparentheses is supported for C only. testsuite: * gcc.dg/Wparentheses-2.c, gcc.dg/Wparentheses-3.c, gcc.dg/Wparentheses-4.c, Wparentheses-5.c, Wparentheses-6.c, Wparentheses-7.c, Wparentheses-8.c, Wparentheses-9.c: New tests. From-SVN: r84860