(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
vect/
tsvc/
vect-tsvc-s278.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 s278(struct args_t * func_args)
      10  {
      11  //    control flow
      12  //    if/goto to block if-then-else
      13  
      14      initialise_arrays(__func__);
      15  
      16      for (int nl = 0; nl < iterations; nl++) {
      17          for (int i = 0; i < LEN_1D; i++) {
      18              if (a[i] > (real_t)0.) {
      19                  goto L20;
      20              }
      21              b[i] = -b[i] + d[i] * e[i];
      22              goto L30;
      23  L20:
      24              c[i] = -c[i] + d[i] * e[i];
      25  L30:
      26              a[i] = b[i] + c[i] * d[i];
      27          }
      28          dummy(a, b, c, d, e, aa, bb, cc, 0.);
      29      }
      30  
      31      return calc_checksum(__func__);
      32  }
      33  
      34  int main (int argc, char **argv)
      35  {
      36    int n1 = 1;
      37    int n3 = 1;
      38    int* ip;
      39    real_t s1,s2;
      40    init(&ip, &s1, &s2);
      41  
      42    run(&s278, "s278", NULL);
      43  
      44    return 0;
      45  }
      46  
      47  /* { dg-final { scan-tree-dump "vectorized 1 loops" "vect" { xfail { ! aarch64_sve }  } } } */