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
/
pr87200.c
blob
a0356315f26b658b9fcd22f76fc3d4e11234356f
1
/* { dg-do compile } */
2
3
unsigned long long int
ry
;
4
5
int
6
gl
(
void
)
7
{
8
long long int
my
=
0
;
9
unsigned long long int
*
oi
= (
unsigned long long int
*) &
my
;
10
int
s9
;
11
12
s9
= !!
gl
() ?
ry
:
0
;
13
if
(
s9
!=
0
)
14
oi
= &
ry
;
15
else
16
{
17
my
=
ry
;
18
*
oi
+=
my
;
19
}
20
21
return
*
oi
;
22
}
23