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
Update concepts branch to revision 131834
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
20071105-1.c
blob
952b1bd697dcaf0b25958a8b6a79f0508327ffd5
1
/* PR tree-optimization/33993 */
2
/* Testcase by Martin Michlmayr <tbm@cyrius.com> */
3
4
void
5
init_full
(
char
*
array
,
int
ny
)
6
{
7
int
j
;
8
char
acc
=
128
;
9
for
(
j
=
0
;
j
<
ny
;
j
++)
10
*
array
++ =
acc
++;
11
}