* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / opt / pr55331.C
blob4717db8091f378af265ad7cbb383c6773d2f6af1
1 // PR tree-optimization/55331
2 // { dg-do compile }
3 // { dg-options "-O2 -fno-tree-fre" }
5 struct A {};
7 void
8 foo (A *p, bool x)
10   A a;
11   char *e = (char *) (&a + 1);
12   if (x)
13     __builtin_memmove (p, &a, e - (char *) &a);