OSDN Git Service

Move from root of repository to intented place.
authorschwab <schwab@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 2 Sep 2005 20:45:43 +0000 (20:45 +0000)
committerschwab <schwab@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 2 Sep 2005 20:45:43 +0000 (20:45 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@103796 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/gcc.dg/Wredundant-decls-2.c [new file with mode: 0644]

diff --git a/gcc/testsuite/gcc.dg/Wredundant-decls-2.c b/gcc/testsuite/gcc.dg/Wredundant-decls-2.c
new file mode 100644 (file)
index 0000000..b10840f
--- /dev/null
@@ -0,0 +1,27 @@
+/* Test for -Wredundant-decls warnings */
+/* { dg-do compile } */
+/* { dg-options "-Wredundant-decls" } */
+
+int j = 5; /* { dg-warning "previous" } */
+int j;     /* { dg-warning "redundant" } */
+
+static int k;
+static int k = 5; /* { dg-warning "previous" } */
+static int k;     /* { dg-warning "redundant" } */
+
+static int l = 5; /* { dg-warning "previous" } */
+static int l;     /* { dg-warning "redundant" } */
+
+static int m;     /* { dg-warning "previous" } */
+static int m;     /* { dg-warning "redundant" } */
+static int m = 5;
+
+int n;           /* { dg-warning "previous" } */
+int n;           /* { dg-warning "redundant" } */
+int n = 5; 
+
+static int o;
+static int o = 5;
+
+int p;
+int p = 5;