PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / Wshadow-local-2.c
blob55ff978a12f1ef1fb173f23f67c5f143ba99cf39
1 /* { dg-do compile } */
2 /* { dg-options "-Wshadow=local" } */
4 struct Bar {
5 };
7 struct Bar bar; /* { dg-bogus "shadowed declaration" } */
9 int val; /* { dg-bogus "shadowed declaration" } */
11 int func1(int x) { /* { dg-bogus "shadowed declaration" } */
12 int val; /* { dg-bogus "shadows a global" } */
13 val = x;
14 return val;
17 int func2(int i) {
18 int a = 3; /* { dg-message "shadowed declaration" } */
19 int j; /* { dg-message "shadowed declaration" } */
21 for (j = 0; j < i; ++j) {
22 int a = j; /* { dg-warning "shadows a previous local" } */
23 int j = a + 1; /* { dg-warning "shadows a previous local" } */
24 func1(j);
27 return a;
30 int func3() {
31 int bar; /* { dg-bogus "shadows a global" } */
32 float func1 = 0.3; /* { dg-bogus "shadows a global" } */
34 if (func1 > 1)
35 bar = 2;
36 else
37 bar = 1;
38 return bar;
41 void func4() {
42 struct Bar bar; /* { dg-message "shadowed declaration" } */
43 /* { dg-bogus "shadows a global" "" { target *-*-* } .-1 } */
45 if (val) {
46 int bar; /* { dg-warning "shadows a previous local" } */
47 func1(bar);