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
AVR: target/84211 - Add a post reload register optimization pass.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr85475.c
blob
0d475df3bc6240038ff8a789f6606c4f9a4112d2
1
/* { dg-do compile } */
2
/* { dg-additional-options "-fpeel-loops" } */
3
4
int
5
nj
(
int
le
)
6
{
7
int
zb
;
8
9
for
(
zb
=
0
;
zb
<
16
; ++
zb
)
10
le
+=
le
;
11
12
return
le
*
le
;
13
}