(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr105175.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-O2 -Wvector-operation-performance" } */
       3  /* { dg-additional-options "-mno-sse" { target x86_64-*-* i?86-*-* } } */
       4  
       5  enum { QEMU_MIGRATION_COOKIE_PERSISTENT = 1 };
       6  struct {
       7    unsigned flags;
       8    unsigned flagsMandatory;
       9  } qemuMigrationCookieGetPersistent_mig;
      10  void qemuMigrationCookieGetPersistent()
      11  {
      12    qemuMigrationCookieGetPersistent_mig.flags &=  /* { dg-bogus "will be expanded" } */
      13        QEMU_MIGRATION_COOKIE_PERSISTENT;
      14    qemuMigrationCookieGetPersistent_mig.flagsMandatory &=
      15        QEMU_MIGRATION_COOKIE_PERSISTENT;
      16  }