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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr110332-2.c
blob
18b656ffb2d2efa380c4c13e923833abe893ea3b
1
/* { dg-do compile } */
2
3
_Bool a
;
4
struct
s
{
int
t
; }
c
,
d
;
5
unsigned
e
,
f
;
6
unsigned
transferValues
(
struct
s
*
End
) {
7
unsigned
RegIdx
= *(
a
? &
e
: &
f
);
8
*
End
= *(
a
? &
c
: &
d
);
9
return
RegIdx
;
10
}