(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr40964.c
       1  struct alloc2 {
       2      int bla;
       3      char * __restrict data;
       4      char * __restrict data2;
       5  };
       6  struct alloc2 b;
       7  void * f (void)
       8  {
       9    return b.data;
      10  }