mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-29 15:16:08 +00:00

Following r333110: "Move all Intel defined intrinsic includes into immintrin.h" llvm-svn: 333160
10 lines
282 B
C
10 lines
282 B
C
// RUN: %clang_cc1 %s -ffreestanding -triple=x86_64-unknown-unknown -target-feature +wbnoinvd -emit-llvm -o - -Wall -Werror | FileCheck %s
|
|
|
|
#include <immintrin.h>
|
|
|
|
void test_wbnoinvd(void) {
|
|
//CHECK-LABEL: @test_wbnoinvd
|
|
//CHECK: call void @llvm.x86.wbnoinvd()
|
|
_wbnoinvd();
|
|
}
|