Fix type in the changelog entry,
[official-gcc.git] / gcc / testsuite / g++.dg / ipa / devirt-c-2.C
blobc03be75dd5913d725f1df8529bb013a0e567c5bd
1 /* Verify that ipa-cp correctly detects the dynamic type of an object
2    under construction when doing devirtualization.  */
3 /* { dg-do run } */
4 /* { dg-options "-O3 -fno-early-inlining -fno-inline -fdump-ipa-cp -fdump-tree-optimized"  } */
6 extern "C" void abort (void);
8 class Distraction
10 public:
11   float f;
12   double d;
13   Distraction ()
14   {
15     f = 8.3;
16     d = 10.2;
17   }
18   virtual float bar (float z);
21 class A
23 public:
24   int data;
25   A();
26   virtual int foo (int i);
29 class B : public Distraction, public A
31 public:
32   virtual int foo (int i);
35 float Distraction::bar (float z)
37   f += z;
38   return f/2;
41 int A::foo (int i)
43   return i + 1;
46 int B::foo (int i)
48   return i + 2;
51 int __attribute__ ((noinline,noclone)) get_input(void)
53   return 1;
56 static int middleman (class A *obj, int i)
58   return obj->foo (i);
61 A::A()
63   if (middleman (this, get_input ()) != 2)
64     abort ();
67 static void bah ()
69   class B b;
72 int main (int argc, char *argv[])
74   int i;
76   for (i = 0; i < 10; i++)
77     bah ();
78   return 0;
81 /* { dg-final { scan-ipa-dump "Discovered a virtual call to a known target.*A::foo"  "cp"  } } */
82 /* { dg-final { scan-tree-dump-times "OBJ_TYPE_REF" 0 "optimized"} } */