repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* gcc.dg/stack-check-5.c: Skip with -fstack-protector.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
Warray-bounds-4.c
blob
71526f27ffd86cb261ff0da1111f26d96d9f6892
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -Wall" } */
3
4
typedef
unsigned int
DWORD
;
5
6
static void
g
(
DWORD
*
p
,
int
n
)
7
{
8
int
i
;
9
10
for
(
i
=
0
;
i
<
n
&& !
p
[
n
-
1
];
i
++);
/* { dg-bogus "subscript is above array bounds" } */
11
}
12
13
void
f
() {
14
DWORD arr
[
8
];
15
16
g
(
arr
,
4
);
17
}