repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
cmov2.c
blob
2b7c696bb822562844f95606e468679b7511e425
1
/* { dg-do compile } */
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
}