mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 20:46:05 +00:00

A previously missing intrinsic for an old instruction. Reviewers: craig.topper, echristo Reviewed By: craig.topper Differential Revision: https://reviews.llvm.org/D45311 llvm-svn: 329937
11 lines
359 B
C
11 lines
359 B
C
// RUN: %clang_cc1 %s -ffreestanding -triple=x86_64-unknown-unknown -emit-llvm -o - -Wall -Werror | FileCheck %s
|
|
// RUN: %clang_cc1 %s -ffreestanding -triple=i386-unknown-unknown -emit-llvm -o - -Wall -Werror | FileCheck %s
|
|
|
|
#include <x86intrin.h>
|
|
|
|
void test_wbinvd(void) {
|
|
//CHECK-LABEL: @test_wbinvd
|
|
//CHECK: call void @llvm.x86.wbinvd()
|
|
_wbinvd();
|
|
}
|