repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[MLIR][TOSA] Update CustomOp input and output names (#118408)
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
X86
/
builtin-clzero.c
blob
f9ecb9ddb5264b0f09d0d8f6f51020420eac6ffa
1
// RUN: %clang_cc1 %s -ffreestanding -triple=x86_64-apple-darwin -target-feature +clzero -emit-llvm -o - -Wall -Werror | FileCheck %s
2
3
#include <x86intrin.h>
4
5
void
test_mm_clzero
(
void
*
__m
) {
6
//CHECK-LABEL: @test_mm_clzero
7
//CHECK: @llvm.x86.clzero
8
_mm_clzero
(
__m
);
9
}