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
2015-12-10 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr48237.c
blob
e20446eab04d957fb050080aa4834889b2010408
1
/* { dg-do compile } */
2
/* { dg-options "-O -fcaller-saves -fschedule-insns2 -fselective-scheduling2 -mtune=core2" } */
3
4
union
double_union
5
{
6
double
d
;
7
int
i
[
2
];
8
};
9
10
void
bar
(
int
, ...);
11
12
void
13
foo
(
double
d
)
14
{
15
union
double_union du
= {
d
};
16
while
(
1
)
17
{
18
du
.
i
[
1
] -=
0x100000
L
;
19
bar
(
0
,
du
.
d
);
20
du
.
d
+=
d
;
21
}
22
}