[MLIR][TOSA] Update CustomOp input and output names (#118408)
[llvm-project.git] / clang / test / CodeGen / X86 / amxcomplex-builtins.c
bloba5478b0395501a7693a57c64c0734eb7c3fa3be2
1 // RUN: %clang_cc1 %s -ffreestanding -triple=x86_64-unknown-unknown -target-feature +amx-tile -target-feature +amx-complex \
2 // RUN: -emit-llvm -o - -Wall -Werror -pedantic -Wno-gnu-statement-expression | FileCheck %s
4 #include <immintrin.h>
5 #include <stddef.h>
6 void test_tile_cmmimfp16ps(void) {
7 // CHECK-LABEL: @test_tile_cmmimfp16ps
8 // CHECK: call void @llvm.x86.tcmmimfp16ps(i8 1, i8 2, i8 3)
9 _tile_cmmimfp16ps(1, 2, 3);
12 void test_tile_cmmrlfp16ps(void) {
13 // CHECK-LABEL: @test_tile_cmmrlfp16ps
14 // CHECK: call void @llvm.x86.tcmmrlfp16ps(i8 1, i8 2, i8 3)
15 _tile_cmmrlfp16ps(1, 2, 3);