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
* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr55921.c
blob
94b7bceb87c5a49c1f1672ce05d78ca2c253f7ae
1
/* PR tree-optimization/55921 */
2
3
typedef
union
4
{
5
_Complex
float
cf
;
6
long long
ll
;
7
}
ucf
;
8
9
void
10
foo
(
ucf
*
in
,
ucf
*
out
,
_Complex
float
r
)
11
{
12
int
i
;
13
ucf ucf1
;
14
_Complex
float
cf
;
15
16
ucf1
.
ll
=
in
[
i
].
ll
;
17
__asm
(
""
:
"=r"
(
cf
) :
"r"
(
ucf1
.
ll
));
18
cf
*=
r
;
19
__asm
(
""
:
"=r"
(
ucf1
.
ll
) :
"r"
(
cf
));
20
out
[
i
].
ll
=
ucf1
.
ll
;
21
}