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
RISC-V: Add support for riscv-*-*.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
fnul.c
blob
b0c9816adf702dcd2e404fa4fd20d0cf875bdd4d
1
main
()
2
{
3
int
i
;
4
int
f
;
5
6
for
(
i
=
0
;;
i
--)
7
{
8
f
=
0
;
9
10
if
((
i
& (
i
-
1
)) ==
0
)
11
{
12
printf
(
"d"
);
13
f
=
1
;
14
}
15
if
((
i
& -
i
) ==
i
)
16
{
17
printf
(
"t"
);
18
f
=
1
;
19
}
20
if
(
f
)
21
printf
(
"%d
\n
"
,
i
);
22
}
23
}