1  /* { dg-final { check-function-bodies "**" "" "-DCHECK_ASM" { target { ! ilp32 } } } } */
       2  
       3  #include "test_sve_acle.h"
       4  
       5  /*
       6  ** whilerw_rr_f16:
       7  **	whilerw	p0\.h, x0, x1
       8  **	ret
       9  */
      10  TEST_COMPARE_S (whilerw_rr_f16, const float16_t *,
      11  		p0 = svwhilerw_f16 (x0, x1),
      12  		p0 = svwhilerw (x0, x1))
      13  
      14  /*
      15  ** whilerw_0r_f16:
      16  **	whilerw	p0\.h, xzr, x1
      17  **	ret
      18  */
      19  TEST_COMPARE_S (whilerw_0r_f16, const float16_t *,
      20  		p0 = svwhilerw_f16 ((const float16_t *) 0, x1),
      21  		p0 = svwhilerw ((const float16_t *) 0, x1))
      22  
      23  /*
      24  ** whilerw_cr_f16:
      25  **	mov	(x[0-9]+), #?1073741824
      26  **	whilerw	p0\.h, \1, x1
      27  **	ret
      28  */
      29  TEST_COMPARE_S (whilerw_cr_f16, const float16_t *,
      30  		p0 = svwhilerw_f16 ((const float16_t *) 1073741824, x1),
      31  		p0 = svwhilerw ((const float16_t *) 1073741824, x1))
      32  
      33  /*
      34  ** whilerw_r0_f16:
      35  **	whilerw	p0\.h, x0, xzr
      36  **	ret
      37  */
      38  TEST_COMPARE_S (whilerw_r0_f16, const float16_t *,
      39  		p0 = svwhilerw_f16 (x0, (const float16_t *) 0),
      40  		p0 = svwhilerw (x0, (const float16_t *) 0))
      41  
      42  /*
      43  ** whilerw_rc_f16:
      44  **	mov	(x[0-9]+), #?1073741824
      45  **	whilerw	p0\.h, x0, \1
      46  **	ret
      47  */
      48  TEST_COMPARE_S (whilerw_rc_f16, const float16_t *,
      49  		p0 = svwhilerw_f16 (x0, (const float16_t *) 1073741824),
      50  		p0 = svwhilerw (x0, (const float16_t *) 1073741824))