(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
aarch64/
sve2/
acle/
asm/
whilewr_s8.c
       1  /* { dg-final { check-function-bodies "**" "" "-DCHECK_ASM" { target { ! ilp32 } } } } */
       2  
       3  #include "test_sve_acle.h"
       4  
       5  /*
       6  ** whilewr_rr_s8:
       7  **	whilewr	p0\.b, x0, x1
       8  **	ret
       9  */
      10  TEST_COMPARE_S (whilewr_rr_s8, const int8_t *,
      11  		p0 = svwhilewr_s8 (x0, x1),
      12  		p0 = svwhilewr (x0, x1))
      13  
      14  /*
      15  ** whilewr_0r_s8:
      16  **	whilewr	p0\.b, xzr, x1
      17  **	ret
      18  */
      19  TEST_COMPARE_S (whilewr_0r_s8, const int8_t *,
      20  		p0 = svwhilewr_s8 ((const int8_t *) 0, x1),
      21  		p0 = svwhilewr ((const int8_t *) 0, x1))
      22  
      23  /*
      24  ** whilewr_cr_s8:
      25  **	mov	(x[0-9]+), #?1073741824
      26  **	whilewr	p0\.b, \1, x1
      27  **	ret
      28  */
      29  TEST_COMPARE_S (whilewr_cr_s8, const int8_t *,
      30  		p0 = svwhilewr_s8 ((const int8_t *) 1073741824, x1),
      31  		p0 = svwhilewr ((const int8_t *) 1073741824, x1))
      32  
      33  /*
      34  ** whilewr_r0_s8:
      35  **	whilewr	p0\.b, x0, xzr
      36  **	ret
      37  */
      38  TEST_COMPARE_S (whilewr_r0_s8, const int8_t *,
      39  		p0 = svwhilewr_s8 (x0, (const int8_t *) 0),
      40  		p0 = svwhilewr (x0, (const int8_t *) 0))
      41  
      42  /*
      43  ** whilewr_rc_s8:
      44  **	mov	(x[0-9]+), #?1073741824
      45  **	whilewr	p0\.b, x0, \1
      46  **	ret
      47  */
      48  TEST_COMPARE_S (whilewr_rc_s8, const int8_t *,
      49  		p0 = svwhilewr_s8 (x0, (const int8_t *) 1073741824),
      50  		p0 = svwhilewr (x0, (const int8_t *) 1073741824))