1 // Compile this with : 2 // gcc -g -Wall -c test30-vtable-changes-v1.cc 3 4 struct S 5 { 6 virtual ~S(); 7 virtual void fn0(); 8 virtual void fvtable_breaker(); 9 virtual void fn1(); 10 }; 11 ~S()12S::~S() 13 {} 14 15 void fn0()16S::fn0() 17 {} 18 19 void fn1()20S::fn1() 21 {} 22 23 void fvtable_breaker()24S::fvtable_breaker() 25 {} 26