summaryrefslogtreecommitdiff
path: root/gcc/testsuite/c-c++-common/cxxbitfields-2.c
blob: b98b56daa91a79b6ae3591a360b519de2a3f06b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* { dg-do compile { target i?86-*-* x86_64-*-* } } */
/* { dg-options "-O2 --param allow-store-data-races=0" } */

/* Test that we don't store past VAR.K.  */

struct S
{
  volatile int i;
  volatile int j: 32;
  volatile int k: 15;
  volatile char c[2];
} var;

void setit()
{
  var.k = 13;
}

/* { dg-final { scan-assembler-not "movl.*, var" } } */