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
c++: regenerate opt urls
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
abi
/
bitfield11.C
blob
e78ea121d6159087ef35cff8acc67121e93cea81
1
// { dg-do run }
2
// { dg-options "-w -fabi-version=0" }
3
4
struct S {
5
char c : 1024;
6
};
7
8
S s;
9
10
int main () {
11
s.c = 1;
12
if (*(char *)&s != 1)
13
return 1;
14
}