predicate aware uninitialized analysis
[official-gcc.git] / gcc / testsuite / g++.dg / abi / thunk4.C
blobfa5fbd4327714d323b7f0012100bd34226ba9855
1 // { dg-require-weak "" }
2 // { dg-skip-if "Linkonce not weak" { *-*-mingw* *-*-cygwin } { "*" } { "" } }
3 // { dg-final { scan-assembler ".weak\[ \t\]_?_ZThn._N7Derived3FooEv" { target { ! { *-*-darwin* } } } } }
4 // { dg-final { scan-assembler ".weak_definition\[ \t\]_?_ZThn._N7Derived3FooEv" { target { *-*-darwin* } } } }
6 struct Base 
8   virtual void Foo ();
9 };
11 struct Filler 
13   virtual void Baz ();
16 struct Derived : Filler, Base 
18   virtual void Foo ();
21 inline void Derived::Foo ()
25 Derived f;