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-wbnoinvd.c
blob
5bea5acf5b090d7b6ae759712cbdde829eb53a7f
1
// RUN: %clang_cc1 %s -ffreestanding -triple=x86_64-unknown-unknown -target-feature +wbnoinvd -emit-llvm -o - -Wall -Werror | FileCheck %s
2
3
#include <immintrin.h>
4
5
void
test_wbnoinvd
(
void
) {
6
//CHECK-LABEL: @test_wbnoinvd
7
//CHECK: call void @llvm.x86.wbnoinvd()
8
_wbnoinvd
();
9
}