(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
arm/
mve/
intrinsics/
vcvtmq_u32_f32.c
       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  **	vcvtm.u32.f32	q[0-9]+, q[0-9]+(?:	@.*|)
      16  **	...
      17  */
      18  uint32x4_t
      19  foo (float32x4_t a)
      20  {
      21    return vcvtmq_u32_f32 (a);
      22  }
      23  
      24  #ifdef __cplusplus
      25  }
      26  #endif
      27  
      28  /* { dg-final { scan-assembler-not "__ARM_undef" } } */