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
/
layout4.C
blob
da3c2f5d8c77f3512a7e9b946205fdb4a64ee10a
1
// { dg-do run { target i?86-*-* x86_64-*-* } }
2
// { dg-require-effective-target ilp32 }
3
// { dg-options "-fabi-version=1" }
4
5
struct C4
6
{
7
int b:30;
8
C4(){};
9
};
10
11
struct C1: virtual C4
12
{
13
int i;
14
};
15
16
int main() {
17
if (sizeof (C1) != 12)
18
return 1;
19
}