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
/
pr69168.c
blob
4f49000450b00517f21305fb4767f6e099982e90
1
/* { dg-do compile } */
2
3
long
a
,
b
,
e
;
4
short
*
c
;
5
int
*
d
;
6
void
fn1
()
7
{
8
int
i
;
9
for
(;
e
;
e
--)
10
{
11
i
=
2
;
12
for
(;
i
;
i
--)
13
a
=
b
= *
d
++ / (
1
<<
9
);
14
b
=
b
?
8
:
a
;
15
*
c
++ = *
c
++ =
b
;
16
}
17
}