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
* gcc.dg/torture/stackalign/builtin-apply-2.c: Fix skip-if syntax.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
graphite
/
pr42729.c
blob
90d584fe3c42454e6119e2d274e91e7e86bf6d96
1
/* { dg-options "-O1 -fgraphite-identity -fcompare-debug" } */
2
/* { dg-xfail-if "" { powerpc-ibm-aix* } } */
3
4
int
A
[
10
];
5
int
*
foo
()
6
{
7
int
*
p1
, *
p2
,
i
;
8
for
(
i
=
0
;
i
<
10
;
i
++)
9
{
10
p1
= &
A
[
i
];
11
*
p1
=
0
;
12
}
13
p2
=
p1
;
14
return
p2
;
15
}