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
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
alias-9.c
blob
0a20e054366dea551e2e255c422a02be550d4d41
1
/* { dg-do run } */
2
/* { dg-options "-O2" } */
3
4
void
abort
(
void
);
5
int
main
()
6
{
7
int
a
[
32
];
8
int
i
=
1
;
9
a
[
0
] =
1
;
10
a
[
1
] =
2
;
11
if
(*(
a
+
i
) !=
2
)
12
abort
();
13
return
0
;
14
}
15