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
* tree-loop-distribution.c (INCLUDE_ALGORITHM): New header file.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr67915.c
blob
77a2edf17a0d2dbd4f1ece17fbbf46ac97be5ff1
1
/* { dg-do compile } */
2
3
int
a
,
b
,
c
,
d
,
e
,
f
,
g
;
4
5
int
6
fn1
(
int
p1
)
7
{
8
return
p1
;
9
}
10
11
void
12
fn2
()
13
{
14
lbl
:
15
g
=
b
;
16
if
(
fn1
(
c
&&
e
))
17
{
18
f
=
a
?
0
:
1
<<
1
;
19
short
h
=
b
;
20
d
=
h
<
0
||
f
?
0
:
1
;
21
}
22
goto
lbl
;
23
}