]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/Wparentheses-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / Wparentheses-1.c
diff --git a/gcc/testsuite/gcc.dg/Wparentheses-1.c b/gcc/testsuite/gcc.dg/Wparentheses-1.c
deleted file mode 100644 (file)
index d6e86eb..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-/* 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" }  */
-}