(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
vect/
tsvc/
vect-tsvc-s443.c
       1  /*  This file is distributed under the University of Illinois Open Source
       2      License. See license.txt for details.  */
       3  
       4  /* { dg-additional-options "--param vect-epilogues-nomask=0" } */
       5  /* { dg-require-effective-target vect_float } */
       6  
       7  #include "tsvc.h"
       8  
       9  real_t s443(struct args_t * func_args)
      10  {
      11  //    non-logical if's
      12  //    arithmetic if
      13  
      14      initialise_arrays(__func__);
      15  
      16      for (int nl = 0; nl < 2*iterations; nl++) {
      17          for (int i = 0; i < LEN_1D; i++) {
      18              if (d[i] <= (real_t)0.) {
      19                  goto L20;
      20              } else {
      21                  goto L30;
      22              }
      23  L20:
      24              a[i] += b[i] * c[i];
      25              goto L50;
      26  L30:
      27              a[i] += b[i] * b[i];
      28  L50:
      29              ;
      30          }
      31          dummy(a, b, c, d, e, aa, bb, cc, 0.);
      32      }
      33  
      34      return calc_checksum(__func__);
      35  }
      36  
      37  int main (int argc, char **argv)
      38  {
      39    int n1 = 1;
      40    int n3 = 1;
      41    int* ip;
      42    real_t s1,s2;
      43    init(&ip, &s1, &s2);
      44  
      45    run(&s443, "s443", NULL);
      46  
      47    return 0;
      48  }
      49  
      50  /* { dg-final { scan-tree-dump "vectorized 1 loops" "vect" { xfail { ! aarch64_sve }  } } } */