(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
aarch64/
feature-bf16-backport.c
       1  /* { dg-do compile } */
       2  /* { dg-additional-options "-march=armv8-a+bf16" } */
       3  
       4  #include <arm_neon.h>
       5  
       6  float32x4_t bar (float32x4_t r, bfloat16x8_t a, bfloat16x8_t b) {
       7          return vbfmlalbq_f32 (r, a, b);
       8  }
       9  
      10  /* { dg-final { scan-assembler {\tbfmlalb\t} } } */