[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / CodeGen / X86 / amx_tf32.c
blob661a9dfbc673b264579801a81c60a736623a9880
1 // RUN: %clang_cc1 %s -ffreestanding -triple=x86_64-unknown-unknown -target-feature +amx-tile -target-feature +amx-tf32 \
2 // RUN: -target-feature +amx-transpose -emit-llvm -o - -Wall -Werror -pedantic -Wno-gnu-statement-expression | FileCheck %s
4 #include <immintrin.h>
5 #include <stddef.h>
7 void test_tile_mmultf32ps(void) {
8 // CHECK-LABEL: @test_tile_mmultf32ps(
9 // CHECK: call void @llvm.x86.tmmultf32ps(i8 1, i8 2, i8 3)
10 _tile_mmultf32ps(1, 2, 3);
13 void test_tile_tmmultf32ps(void) {
14 // CHECK-LABEL: @test_tile_tmmultf32ps(
15 // CHECK: call void @llvm.x86.ttmmultf32ps(i8 1, i8 2, i8 3)
16 _tile_tmmultf32ps(1, 2, 3);