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
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
g++.dg
/
abi
/
bitfield6.C
blob
50f76ab824bc15e35a4f9963ab2839a1aff57e14
1
// { dg-do run }
2
// { dg-options "-w -fabi-version=0" }
3
4
#include <limits>
5
6
union U {
7
int i: 4096;
8
};
9
10
int main () {
11
if (sizeof (U) * std::numeric_limits<unsigned char>::digits != 4096)
12
return 1;
13
}
14