comparison gcc/testsuite/gcc.target/arm/mve/intrinsics/vddupq_x_wb_u8.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_ok } */
2 /* { dg-add-options arm_v8_1m_mve } */
3 /* { dg-additional-options "-O2" } */
4
5 #include "arm_mve.h"
6
7 uint32_t *a;
8
9 uint8x16_t
10 foo (mve_pred16_t p)
11 {
12 return vddupq_x_wb_u8 (a, 8, p);
13 }
14
15 /* { dg-final { scan-assembler "vpst" } } */
16 /* { dg-final { scan-assembler "vddupt.u8" } } */
17
18 uint8x16_t
19 foo1 (mve_pred16_t p)
20 {
21 return vddupq_x_u8 (a, 8, p);
22 }
23
24 /* { dg-final { scan-assembler "vpst" } } */
25 /* { dg-final { scan-assembler "vddupt.u8" } } */