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
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);