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  **	vcmp.f32	ge, q[0-9]+, q[0-9]+(?:	@.*|)
      16  **	...
      17  **	vmrs	(?:ip|fp|r[0-9]+), p0(?:	@.*|)
      18  **	...
      19  */
      20  mve_pred16_t
      21  foo (float32x4_t a, float32x4_t b)
      22  {
      23    return vcmpgeq_f32 (a, b);
      24  }
      25  
      26  
      27  /*
      28  **foo1:
      29  **	...
      30  **	vcmp.f32	ge, q[0-9]+, q[0-9]+(?:	@.*|)
      31  **	...
      32  **	vmrs	(?:ip|fp|r[0-9]+), p0(?:	@.*|)
      33  **	...
      34  */
      35  mve_pred16_t
      36  foo1 (float32x4_t a, float32x4_t b)
      37  {
      38    return vcmpgeq (a, b);
      39  }
      40  
      41  #ifdef __cplusplus
      42  }
      43  #endif
      44  
      45  /* { dg-final { scan-assembler-not "__ARM_undef" } } */