* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / ubsan / pr71393.C
blob6011e3a8de0a27e143bea3b8e636092fd615be5d
1 // PR c++/71393
2 // { dg-do compile }
3 // { dg-options "-fsanitize=undefined" }
5 struct B { B &operator << (long); };
6 struct A { A (); long a, b, c, d, e, f; };
8 A::A ()
10   B q;
11   q << 0 << a << 0 << b << 0 << (b / a) << 0 << c << 0 << (c / a) << 0
12     << d << 0 << (d / a) << 0 << e << 0 << (e / a) << 0 << f << 0
13     << (f / a) << 0;