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
/
pr68715.c
blob
14da2fbf939ec5970797afe9e152fd2807a61d07
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -floop-interchange" } */
3
4
int
a
[
1
],
c
[
1
];
5
int
b
,
d
,
e
;
6
7
void
8
fn1
(
int
p1
)
9
{
10
for
(;;)
11
;
12
}
13
14
int
15
fn3
()
16
{
17
for
(;
e
;
e
++)
18
c
[
e
] =
2
;
19
for
(;
d
;
d
--)
20
a
[
d
] =
8
;
21
return
0
;
22
}
23
24
int
fn5
(
int
);
25
26
int
27
fn2
()
28
{
29
fn3
();
30
}
31
32
void
33
fn4
()
34
{
35
fn1
(
b
||
fn5
(
fn2
()));
36
}