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
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr28946.c
blob
3272079772cd7ade2b96c0464f45b37410111b32
1
/* { dg-do compile } */
2
/* { dg-options "-Os -fno-ident" } */
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
}