* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / other / offsetof1.C
blob78738892a70817ed74cac813a6a9ca2cdcd90825
1 // { dg-do compile }
3 // Copyright (C) 2002 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 14 Aug 2002 <nathan@codesourcery.com>
6 // PR c++ 7598, offsetof broke
7 // PR c++ 11072, DR 273's solution is broken
9 #include <cstddef>
11 struct F
13   char i;
14   char j;
17 static int ary[offsetof(F, j)];