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
Revert DECL_USER_ALIGN part of r241959
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr78721.c
blob
fb2ffc30eb09d0f0048a213cb4b261b9b22d6938
1
/* { dg-do run } */
2
/* { dg-options "-O2" } */
3
4
int
a
,
b
,
c
;
5
6
int
fn1
(
char
e
,
char
f
)
7
{
8
return
!
f
|| (
e
&&
f
==
1
);
9
}
10
11
void
fn2
(
char
e
)
12
{
13
while
(
b
)
14
e
=
0
;
15
a
=
128
;
16
c
=
fn1
(
e
,
a
==
e
);
17
}
18
19
int
main
()
20
{
21
fn2
(
0
);
22
return
0
;
23
}