summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr105175.c
blob: d8d7edb942a2ce207ca8a5705e07ae03f1f7b10c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* { dg-do compile } */
/* { dg-options "-O2 -Wvector-operation-performance" } */
/* { dg-additional-options "-mno-sse" { target x86_64-*-* i?86-*-* } } */

enum { QEMU_MIGRATION_COOKIE_PERSISTENT = 1 };
struct {
  unsigned flags;
  unsigned flagsMandatory;
} qemuMigrationCookieGetPersistent_mig;
void qemuMigrationCookieGetPersistent()
{
  qemuMigrationCookieGetPersistent_mig.flags &=  /* { dg-bogus "will be expanded" } */
      QEMU_MIGRATION_COOKIE_PERSISTENT;
  qemuMigrationCookieGetPersistent_mig.flagsMandatory &=
      QEMU_MIGRATION_COOKIE_PERSISTENT;
}