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
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
Warray-bounds-8.c
blob
85839f3f07eea164daae0ddbb7ab596343493fe4
1
/* { dg-do compile } */
2
/* { dg-options "-O3 -Wall" } */
3
/* based on PR 43833 */
4
5
extern
unsigned char
data
[
5
];
6
7
unsigned char
8
foo
(
char
*
str
)
9
{
10
int
i
,
j
;
11
unsigned char
c
=
0
;
12
13
for
(
i
=
0
;
i
<
8
;
i
++)
14
{
15
j
=
i
*
5
;
16
if
((
j
%
8
) >
3
)
17
c
|=
data
[(
j
/
8
) +
1
];
18
}
19
return
c
;
20
}