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
[31/77] Use scalar_int_mode for move2add
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.brendan
/
misc15.C
blob
2c5f1ae03ac0430f95b21c8ac201155ed2219a17
1
// { dg-do assemble }
2
// GROUPS passed miscellaneous-bugs
3
4
struct A {
5
int aa;
6
};
7
struct B : public A {
8
};
9
struct C : public A {
10
};
11
struct D : public C, public B {
12
void fun() { C::aa = 10; }
13
};