(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
aarch64/
sve/
acle/
asm/
trn1_s64.c
       1  /* { dg-final { check-function-bodies "**" "" "-DCHECK_ASM" } } */
       2  
       3  #include "test_sve_acle.h"
       4  
       5  /*
       6  ** trn1_s64_tied1:
       7  **	trn1	z0\.d, z0\.d, z1\.d
       8  **	ret
       9  */
      10  TEST_UNIFORM_Z (trn1_s64_tied1, svint64_t,
      11  		z0 = svtrn1_s64 (z0, z1),
      12  		z0 = svtrn1 (z0, z1))
      13  
      14  /*
      15  ** trn1_s64_tied2:
      16  **	trn1	z0\.d, z1\.d, z0\.d
      17  **	ret
      18  */
      19  TEST_UNIFORM_Z (trn1_s64_tied2, svint64_t,
      20  		z0 = svtrn1_s64 (z1, z0),
      21  		z0 = svtrn1 (z1, z0))
      22  
      23  /*
      24  ** trn1_s64_untied:
      25  **	trn1	z0\.d, z1\.d, z2\.d
      26  **	ret
      27  */
      28  TEST_UNIFORM_Z (trn1_s64_untied, svint64_t,
      29  		z0 = svtrn1_s64 (z1, z2),
      30  		z0 = svtrn1 (z1, z2))