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
/
tree-ssa
/
alias-14.c
blob
a1216b7d374204ad2bcfec7dae95a004b1a47bee
1
/* { dg-do run } */
2
/* { dg-options "-O2" } */
3
4
struct
s
5
{
6
long long
a
:
12
;
7
long long
b
:
12
;
8
long long
c
:
40
;
9
};
10
11
struct
s s
, *
p
= &
s
;
12
13
int
14
main
()
15
{
16
p
->
a
=
1
;
17
s
.
a
=
0
;
18
s
.
b
=
0
;
19
return
p
->
a
+
s
.
b
;
20
}