blob: d8d7edb942a2ce207ca8a5705e07ae03f1f7b10c [file] [log] [blame]
/* { 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;
}