1  /* { dg-final { check-function-bodies "**" "" "-DCHECK_ASM" } } */
       2  
       3  #include "test_sve_acle.h"
       4  
       5  /*
       6  ** histseg_s8_tied1:
       7  **	histseg	z0\.b, z0\.b, z1\.b
       8  **	ret
       9  */
      10  TEST_TYPE_CHANGE_Z (histseg_s8_tied1, svuint8_t, svint8_t,
      11  		    z0_res = svhistseg_s8 (z0, z1),
      12  		    z0_res = svhistseg (z0, z1))
      13  
      14  /*
      15  ** histseg_s8_tied2:
      16  **	histseg	z0\.b, z1\.b, z0\.b
      17  **	ret
      18  */
      19  TEST_TYPE_CHANGE_Z (histseg_s8_tied2, svuint8_t, svint8_t,
      20  		    z0_res = svhistseg_s8 (z1, z0),
      21  		    z0_res = svhistseg (z1, z0))
      22  
      23  /*
      24  ** histseg_s8_untied:
      25  **	histseg	z0\.b, z1\.b, z2\.b
      26  **	ret
      27  */
      28  TEST_TYPE_CHANGE_Z (histseg_s8_untied, svuint8_t, svint8_t,
      29  		    z0_res = svhistseg_s8 (z1, z2),
      30  		    z0_res = svhistseg (z1, z2))