blob: 01887887df3ca2b792303188616e4c5f02913950 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* { dg-do compile { target { ! ia32 } } } */
/* { dg-require-effective-target masm_intel } */
/* { dg-options "-O2 -mamx-tf32 -masm=intel" } */
/* { dg-final { scan-assembler "tmmultf32ps\[ \\t]+\[^\n\]*%tmm1+\[^\n\]*%tmm2+\[^\n\]*%tmm3" } } */
#include <immintrin.h>
void TEST()
{
_tile_mmultf32ps (1, 2, 3);
}
|