// { dg-do run }
// On an i386, this core dumps because the reg-stack.c code is wrong, and
// pops an fp register that it thinks is not used, but it is.
extern "C" int printf (const char*, ...);
str
// { dg-do run }
// GROUPS passed pure-virt
extern "C" int printf (const char *, ...);
class Base {
public:
virtual ~Base() =0;
};
class Deranged : public Base {
public:
int value;
virtual ~De