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  /* { dg-final { check-function-bodies "**" "" } } */
       5  
       6  #include "arm_mve.h"
       7  
       8  #ifdef __cplusplus
       9  extern "C" {
      10  #endif
      11  
      12  /*
      13  **foo:
      14  **	...
      15  **	vldrw.u32	q[0-9]+, \[q[0-9]+, #[0-9]+\](?:	@.*|)
      16  **	...
      17  */
      18  float32x4_t
      19  foo (uint32x4_t addr)
      20  {
      21    return vldrwq_gather_base_f32 (addr, 0);
      22  }
      23  
      24  #ifdef __cplusplus
      25  }
      26  #endif
      27  
      28  /* { dg-final { scan-assembler-not "__ARM_undef" } } */