repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr28946.c
blob
bdc2fd15f7f846cc873bfd91053e2a52294a5f75
1
/* { dg-do compile } */
2
/* { dg-options "-Os" } */
3
/* { dg-final { scan-assembler-not "test" } } */
4
5
int
fct1
(
void
);
6
int
fct2
(
void
);
7
8
int
9
fct
(
unsigned
nb
)
10
{
11
if
((
nb
>>
5
) !=
0
)
12
return
fct1
();
13
else
14
return
fct2
();
15
}