repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2016-12-21 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
volatile-bitfields-2.c
blob
302625a199b5b79d950592dcc869895753bf4884
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fno-strict-volatile-bitfields" } */
3
4
typedef
struct
{
5
char
a
:
1
;
6
char
b
:
7
;
7
int
c
;
8
}
BitStruct
;
9
10
volatile
BitStruct bits
;
11
12
int
foo
()
13
{
14
return
bits
.
b
;
15
}
16
17
/* { dg-final { scan-assembler "movl.*bits" } } */