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
/
pr58463.c
blob
da9dec89fdede547a4264e151f8f61df81c3fb26
1
/* { dg-do compile } */
2
/* { dg-options "-fdump-tree-ealias-details -O2" } */
3
4
typedef
struct
5
{
6
int
data16
;
7
}
8
list_data
;
9
void
10
fn1
(
list_data
*
p1
)
11
{
12
p1
->
data16
=
p1
->
data16
&
1
&
p1
->
data16
>>
1
;
13
}
14