[cfe-commits] r90533 - /cfe/trunk/lib/CodeGen/CGVtable.cpp

Mike Stump mrs at apple.com
Thu Dec 3 20:12:56 PST 2009


On Dec 3, 2009, at 7:41 PM, Anders Carlsson wrote:
> Author: andersca
> Date: Thu Dec  3 21:41:37 2009
> New Revision: 90533
> 
> URL: http://llvm.org/viewvc/llvm-project?rev=90533&view=rev
> Log:
> Add a way to get the index of a method. Assert that we have the same index for now.

This breaks eh32.C:

class Base {
public:
    virtual ~Base() throw();
};
 
Base::~Base() throw()
{
}
 
class Foo : public Base {
public:
    virtual ~Foo() throw();
};
 
Foo::~Foo() throw()
{
}

which used to work?



More information about the cfe-commits mailing list