comparison gcc/testsuite/gcc.target/arm/mve/intrinsics/vld2q_f16.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-require-effective-target arm_v8_1m_mve_fp_ok } */
2 /* { dg-add-options arm_v8_1m_mve_fp } */
3 /* { dg-additional-options "-O2" } */
4
5 #include "arm_mve.h"
6
7 float16x8x2_t
8 foo (float16_t const * addr)
9 {
10 return vld2q_f16 (addr);
11 }
12
13 /* { dg-final { scan-assembler "vld20.16" } } */
14 /* { dg-final { scan-assembler "vld21.16" } } */
15
16 float16x8x2_t
17 foo1 (float16_t const * addr)
18 {
19 return vld2q (addr);
20 }
21
22 /* { dg-final { scan-assembler "vld20.16" } } */