aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/X86/x86-serialize-intrin.c
blob: a3587efc88835bc0b55d56e8ba54ed5e5c2896f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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();
}