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
2017-12-05 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vect
/
pr71416-2.c
blob
d846ef17ef16f31ee2f5c93df23e8616e93f9d0c
1
/* { dg-do compile } */
2
3
int
a
,
b
,
d
,
e
,
f
,
g
;
4
int
*
c
;
5
void
fn2
(
int
*);
6
void
fn1
() {
fn2
(&
e
); }
7
8
void
fn2
(
int
*
p1
) {
9
for
(;;) {
10
for
(;
a
;
a
++)
11
if
(*
p1
=
g
|| --
f
,
b
)
12
if
(*
c
)
13
d
= *
p1
;
14
if
(*
p1
)
15
break
;
16
}
17
}