]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/Wshadow-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / Wshadow-1.c
diff --git a/gcc/testsuite/gcc.dg/Wshadow-1.c b/gcc/testsuite/gcc.dg/Wshadow-1.c
deleted file mode 100644 (file)
index 63808aa..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-/* Copyright (C) 2001 Free Software Foundation, Inc.  */
-
-/* { dg-do compile } */
-/* { dg-options "-Wshadow -pedantic-errors" } */
-
-/* Source: Neil Booth, 5 Dec 2001.  */
-
-int decl1;                     /* { dg-warning "shadowed declaration" } */
-void foo (double decl1)                /* { dg-warning "shadows a global decl" } */
-{                              
-}
-
-void foo1 (int d)
-{
-  double d;     /* { dg-bogus "warning" "warning in place of error" } */
-  /* { dg-error "shadows a parameter" "" { target *-*-* } 15 } */
-}
-
-void foo2 (int d)              /* { dg-warning "shadowed declaration" } */
-{
-  {
-    double d;                  /* { dg-warning "shadows a parameter" } */
-  }
-}
-
-void foo3 ()
-{
-  int local;                   /* { dg-warning "shadowed declaration" } */
-  {
-    int local;                 /* { dg-warning "shadows a previous local" } */
-  }
-}