1 /* Verify that ipa-cp correctly detects the dynamic type of an object
2 under construction when doing devirtualization. */
4 /* { dg-options "-O3 -fno-inline" } */
6 extern "C" void abort (void);
18 virtual float bar (float z);
26 virtual int foo (int i);
29 class B : public Distraction, public A
32 virtual int foo (int i);
35 float Distraction::bar (float z)
51 int __attribute__ ((noinline,noclone)) get_input(void)
56 static int __attribute__ ((noinline))
57 middleman (class A *obj, int i)
62 inline __attribute__ ((always_inline)) A::A()
64 if (middleman (this, get_input ()) != 2)
73 int main (int argc, char *argv[])
77 for (i = 0; i < 10; i++)