modernc.org/cc@v1.0.1/testdata/gcc-6.3.0/gcc/testsuite/gcc.c-torture/compile/pr40964.c (about)

     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  }