]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/g++.dg/lto/20081204-1_0.C
* doc/invoke.texi (-fwhopr): Merge into -flto section.
[thirdparty/gcc.git] / gcc / testsuite / g++.dg / lto / 20081204-1_0.C
CommitLineData
7bfefa9d 1/* { dg-lto-do link } */
cbcf2791 2/* { dg-lto-options {{-flto -flto-partition=1to1 -fPIC -r -nostdlib}} } */
7bfefa9d 3
4/* Tests for the absence during linking of:
5 lto1: error: type of '_ZTVN10__cxxabiv120__si_class_type_infoE' does
6 not match original declaration */
7
8struct Foo { virtual ~Foo(); };
9namespace __cxxabiv1
10{
11 struct __si_class_type_info: public Foo { };
12 struct Baz: public Foo { virtual void Func(); };
13 void Baz::Func() { }
14}