llvm-project/clang/test/CodeGen/X86/x86-serialize-intrin.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
394 B
C
Raw Normal View History

// RUN: %clang_cc1 %s -ffreestanding -triple x86_64-unknown-unknown -target-feature +serialize -emit-llvm -o - | FileCheck %s
// RUN: %clang_cc1 %s -ffreestanding -triple i386-unknown-unknown -target-feature +serialize -emit-llvm -o - | FileCheck %s
#include <immintrin.h>
void test_serialize(void)
{
// CHECK-LABEL: test_serialize
// CHECK: call void @llvm.x86.serialize()
_serialize();
}