projects
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e73c8e7
)
tweak so adjustment is necessary in v3 abi
author
Jason Merrill
<jason@gcc.gnu.org>
Fri, 18 Jan 2002 13:30:17 +0000
(08:30 -0500)
committer
Jason Merrill
<jason@gcc.gnu.org>
Fri, 18 Jan 2002 13:30:17 +0000
(08:30 -0500)
From-SVN: r48986
gcc/testsuite/g++.old-deja/g++.robertl/eb17.C
patch
|
blob
|
history
diff --git
a/gcc/testsuite/g++.old-deja/g++.robertl/eb17.C
b/gcc/testsuite/g++.old-deja/g++.robertl/eb17.C
index f32dadba9a53468a503e704da85974656438ea4d..3f2cc2f33e2803cb8ac8892ad0989745668e762e 100644
(file)
--- a/
gcc/testsuite/g++.old-deja/g++.robertl/eb17.C
+++ b/
gcc/testsuite/g++.old-deja/g++.robertl/eb17.C
@@
-8,7
+8,11
@@
public:
virtual A * clone();
};
-class B : virtual public A {
+struct Pad {
+ virtual void f () {}
+};
+
+class B : public Pad, virtual public A {
public:
void print();
B * clone();