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

/* Make sure we don't narrow down to a QI or HI to store into VAR.J,
   but instead use an SI.  */

struct S
{ 
  volatile int i: 4;
  volatile int j: 4;
  volatile int k: 8;
  volatile int l: 8;
  volatile int m: 8;
} var;

void setit()
{ 
  var.j = 5;
}

/* { dg-final { scan-assembler "movl.*, _?var" { target nonpic } } } */
/* { dg-final { scan-assembler "movl.*, (_?var|\\(%)" { target { ! nonpic } } } } */