* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / opt / pr71528.C
blobbfe062204726b1afa9a3736f9a0061573ebd67b1
1 // PR c++/71528
2 // { dg-do run }
3 // { dg-options "-O2" }
5 extern int &x;
6 int y;
8 int &
9 foo ()
11   return y;
14 int &x = foo ();
16 int
17 main ()
19   if (&x != &y)
20     __builtin_abort ();
23 extern int &x;