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
2016-12-21 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr59874-1.c
blob
e6a8a06dd52d38ffeaeda0b12fd36aa11cd1d6c4
1
/* PR target/59874 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2 -mbmi -masm=att" } */
4
/* { dg-final { scan-assembler "tzcntw" } } */
5
6
unsigned int
7
foo
(
unsigned short
x
)
8
{
9
return
x
?
__builtin_ctz
(
x
) :
16U
;
10
}