* testsuite/icf_virtual_function_folding_test.cc (class Bar): Add

virtual destructor.
This commit is contained in:
Ian Lance Taylor
2010-12-01 16:53:57 +00:00
parent 9a5ce24c61
commit e5e19edd48
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2010-12-01 Ian Lance Taylor <iant@google.com>
* testsuite/icf_virtual_function_folding_test.cc (class Bar): Add
virtual destructor.
2010-12-01 Ian Lance Taylor <iant@google.com>
* README: Update compilers known to work and fail.

View File

@ -36,6 +36,7 @@ namespace
class Bar
{
public:
virtual ~Bar() { }
virtual int fn1();
};