[committed] [RISC-V] Skip zbs-ext-2.c for -Oz as well
[official-gcc.git] / gcc / testsuite / gcc.target / arm / neon-vdup-15.c
blob88717b554e548f5ccbcd34d14b8a27c9ae51213b
1 /* Test the optimization of `vdupq_n_u8' ARM Neon intrinsic. */
3 /* { dg-do compile } */
4 /* { dg-require-effective-target arm_neon_ok } */
5 /* { dg-options "-O2" } */
6 /* { dg-add-options arm_neon } */
8 #include <arm_neon.h>
10 uint8x16_t out_uint8x16_t;
11 void test_vdupq_nu8 (void)
13 out_uint8x16_t = vdupq_n_u8 (0x12);
16 /* { dg-final { scan-assembler "vmov\.i8\[ \]+\[qQ\]\[0-9\]+, #18\(\[ \]+@\[a-zA-Z0-9 \]+\)?\n" } } */