blob: 70bec0336e57736f9dd53a838187e0a7bf1aaf7f [file] [log] [blame]
/* Test the optimization of `vdupq_n_u32' ARM Neon intrinsic. */
/* { dg-do compile } */
/* { dg-require-effective-target arm_neon_ok } */
/* { dg-options "-O2" } */
/* { dg-add-options arm_neon } */
#include <arm_neon.h>
uint32x4_t out_uint32x4_t;
void test_vdupq_nu32 (void)
{
out_uint32x4_t = vdupq_n_u32 (0x12ff);
}
/* { dg-final { scan-assembler "vmov\.i32\[ \]+\[qQ\]\[0-9\]+, #4863\(\[ \]+@\[a-zA-Z0-9 \]+\)?\n" } } */
/* { dg-final { cleanup-saved-temps } } */