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
/
cmov2.c
blob
cd6457f0d5f13fcd0bf5a54f0f22d3cbc26efc5a
1
/* { dg-do compile { target i?86-*-* x86_64-*-* } } */
2
/* { dg-options "-O2 -march=k8" } */
3
/* { dg-final { scan-assembler "sbb" } } */
4
5
/* This conditional move is fastest to be done using sbb. */
6
t
(
unsigned int
a
,
unsigned int
b
)
7
{
8
return
(
a
<=
b
?
5
:-
5
);
9
}