(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
aarch64/
min_plus_7.c
       1  /* { dg-do run } */
       2  /* { dg-options "-O2 --save-temps" } */
       3  /* { dg-final { check-function-bodies "**" "" "" } } */
       4  
       5  /*
       6  ** f1:
       7  **	subs	(x[0-9]+), x0, #?2
       8  **	csel	x0, \1, xzr, (cc|ls)
       9  **	ret
      10  */
      11  /*
      12  ** f2:
      13  **	subs	(x[0-9]+), x0, #?2
      14  **	csel	x0, \1, xzr, (cc|ls)
      15  **	ret
      16  */
      17  /*
      18  ** f3:
      19  **	subs	(x[0-9]+), x0, #?1
      20  **	csinc	x0, \1, xzr, ls
      21  **	ret
      22  */
      23  /*
      24  ** f4:
      25  **	subs	(x[0-9]+), x0, #?3
      26  **	csinv	x0, \1, xzr, cc
      27  **	ret
      28  */
      29  
      30  #define TYPE uint64_t
      31  #define TYPE_MIN 0
      32  #define TYPE_MAX UINT64_MAX
      33  #define VALUE 2
      34  
      35  #include "min_plus_1.c"