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
Add _FloatN, _FloatNx tests for __builtin_fpclassify.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr52298.c
blob
f0799c1a5c835d645d4d618dea9dbfc97b232ec0
1
/* { dg-do compile } */
2
3
int
a
,
b
,
c
,
h
;
4
5
int
i
[
5
][
5
];
6
7
void
8
fn1
()
9
{
10
int
l
=
0
;
11
12
for
(
a
=
0
;
a
<=
3
;
a
++)
13
for
(
b
=
1
;
b
>=
0
;
b
-=
1
)
14
l
|=
i
[
0
][
b
];
15
c
=
l
;
16
}