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
i386: Utilize VCOMSBF16 for BF16 Comparisons with AVX10.2
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
vax
/
ctzsi.c
blob
8be42712c7715d86342220e153aad05e21169480
1
/* { dg-do compile } */
2
3
int
4
ctzsi
(
unsigned int
x
)
5
{
6
return
__builtin_ctz
(
x
);
7
}
8
9
/* Expect assembly like:
10
11
ffs $0,$32,4(%ap),%r0
12
13
*/
14
15
/* { dg-final { scan-assembler "\tffs \\\$0,\\\$32," } } */