aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/amxcomplex-asmintel-1.c
blob: 305465e88607a731967e99aae532e10a00144505 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { dg-do compile { target { ! ia32 } } } */
/* { dg-require-effective-target masm_intel } */
/* { dg-options "-O2 -mamx-complex -masm=intel" } */
/* { dg-final { scan-assembler "tcmmimfp16ps\[ \\t]+\[^\n\]*%tmm1+\[^\n\]*%tmm2+\[^\n\]*%tmm3"  } } */
/* { dg-final { scan-assembler "tcmmrlfp16ps\[ \\t]+\[^\n\]*%tmm1+\[^\n\]*%tmm2+\[^\n\]*%tmm3"  } } */
#include <immintrin.h>

void TEST()
{
  _tile_cmmimfp16ps (1, 2, 3);
  _tile_cmmrlfp16ps (1, 2, 3);
}