comparison gcc/testsuite/gcc.target/arm/simd/bf16_mmla_1.c @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents
children
comparison
equal deleted inserted replaced
145:1830386684a0 152:2b5abeee2509
1 /* { dg-do assemble } */
2 /* { dg-require-effective-target arm_v8_2a_bf16_neon_ok } */
3 /* { dg-add-options arm_v8_2a_bf16_neon } */
4 /* { dg-additional-options "-save-temps -O2" } */
5 /* { dg-final { check-function-bodies "**" "" } } */
6
7 #include <arm_neon.h>
8
9 /*
10 **test_vmmlaq_f32:
11 ** ...
12 ** vmmla.bf16 q0, q1, q2
13 ** bx lr
14 */
15 float32x4_t
16 test_vmmlaq_f32 (float32x4_t r, bfloat16x8_t x, bfloat16x8_t y)
17 {
18 return vbfmmlaq_f32 (r, x, y);
19 }