From: Andreas Schwab Date: Fri, 2 Sep 2005 20:45:43 +0000 (+0000) Subject: Move from root of repository to intented place. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=810d4c7ba0581cc1a62f54d808b2ce7a633c5c29;p=gcc.git Move from root of repository to intented place. From-SVN: r103796 --- diff --git a/gcc/testsuite/gcc.dg/Wredundant-decls-2.c b/gcc/testsuite/gcc.dg/Wredundant-decls-2.c new file mode 100644 index 00000000000..b10840fcf95 --- /dev/null +++ b/gcc/testsuite/gcc.dg/Wredundant-decls-2.c @@ -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;