(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
vmx/
3b-14.c
       1  #include "harness.h"
       2  
       3  static vector bool char x(void);
       4  static void g(void);
       5  
       6  static vector bool char
       7  f (void) 
       8  {
       9    vector bool char a = x();
      10    g();
      11    return a;
      12  }
      13  
      14  static vector bool char
      15  x (void)
      16  {
      17    static vector bool char zero;
      18    return zero;
      19  }
      20  
      21  static void g ()
      22  {
      23  }
      24  
      25  static void test()
      26  {
      27    static vector bool char zero;
      28    check(vec_all_eq(f(), zero), "f");
      29  }