(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr68306-2.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-O3" } */
       3  /* { dg-additional-options "-mno-sse -mno-mmx" { target i?86-*-* x86_64-*-* } } */
       4  
       5  struct {
       6      int tz_minuteswest;
       7      int tz_dsttime;
       8  } a, b;
       9  void fn1() {
      10      b.tz_minuteswest = a.tz_minuteswest;
      11      b.tz_dsttime = a.tz_dsttime;
      12  }