blob: cc64e232ab0b41c0c9a5f80838065f316fa18ccc [file] [log] [blame]
/* { dg-do assemble } */
/* { dg-require-effective-target arm_hard_ok } */
/* { dg-require-effective-target arm_v8_2a_bf16_neon_ok } */
/* { dg-add-options arm_v8_2a_bf16_neon } */
/* { dg-additional-options "-save-temps -O2 -mfloat-abi=hard" } */
/* { dg-final { check-function-bodies "**" "" } } */
#include <arm_neon.h>
/*
**test_vmmlaq_f32:
** ...
** vmmla.bf16 q0, q1, q2
** bx lr
*/
float32x4_t
test_vmmlaq_f32 (float32x4_t r, bfloat16x8_t x, bfloat16x8_t y)
{
return vbfmmlaq_f32 (r, x, y);
}