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
2018-04-09 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr70700.c
blob
613cd29fc1f1415e51f984e356b90339dc1a7221
1
/* { dg-do compile } */
2
/* { dg-options "-O3 -fdump-tree-ealias-graph" } */
3
4
struct
S
5
{
6
long
m
;
7
};
8
9
struct
S
10
fn1
(
struct
S
*
a
)
11
{
12
if
(
a
->
m
)
13
a
->
m
|=
2
;
14
return
*
a
;
15
}