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
Update concepts branch to revision 131834
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
alias-10.c
blob
03956100a2c20f5fddecfa33d1dc6471cbf0276e
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fdump-tree-optimized" } */
3
4
struct
{
5
int
i
;
6
int
x
[
2
];
7
int
j
;
8
}
a
;
9
10
int
foo
(
int
i
)
11
{
12
a
.
i
=
1
;
13
a
.
j
=
2
;
14
a
.
x
[
i
] =
0
;
15
return
a
.
i
+
a
.
j
;
16
}
17
18
/* { dg-final { scan-tree-dump "return 3;" "optimized" } } */
19
/* { dg-final { cleanup-tree-dump "optimized" } } */
20