blob: b5d3d963c8852a7fb3f014eaf9ea9586a5de7c25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
/* PR c/99420 - bogus -Warray-parameter on a function redeclaration
in function scope
{ dg-do compile }
{ dg-options "-Wall" } */
extern int a1[1], a2[2], a3[3], a4[4];
void fa1 (int [1]); // { dg-message "previously declared as 'int\\\[1]'" }
void fa1 (int [1]);
void nested_decl (void)
{
void fa2 (int [2]);
fa2 (a1); // { dg-warning "\\\[-Warray-bounds|-Wstringop-overflow" }
fa2 (a2);
fa2 (a3);
void fa3 (int [3]);
fa3 (a2); // { dg-warning "\\\[-Warray-bounds|-Wstringop-overflow" }
fa3 (a3);
}
void nested_redecl (void)
{
void fa1 (int [2]); // { dg-warning "argument 1 of type 'int\\\[2]' with mismatched bound" }
fa1 (a1 + 1); // { dg-warning "\\\[-Warray-bounds|-Wstringop-overflow" }
fa1 (a1);
void fa2 (int [2]); // { dg-bogus "\\\[-Warray-parameter" }
fa2 (a1); // { dg-warning "\\\[-Warray-bounds|-Wstringop-overflow" }
fa2 (a2);
fa2 (a3);
void fa3 (int [3]); // { dg-bogus "\\\[-Warray-parameter" }
fa3 (a2); // { dg-warning "\\\[-Warray-bounds|-Wstringop-overflow" }
fa3 (a3);
void fa4 (int [4]);
}
void fa4 (int [5]); // { dg-warning "\\\[-Warray-parameter" }
void call_fa4 (void)
{
fa4 (a4);
fa4 (a3); // { dg-warning "\\\[-Warray-bounds|-Wstringop-overflow" }
}
|