* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / gcov / ternary.C
blobd055928c2952fb28166f9c9da3455df4ba11804e
1 // { dg-options "-fprofile-arcs -ftest-coverage" }
2 // { dg-do run { target native } }
4 int b, c, d, e;
6 int main()
8   int a = b < 1 ? (c < 3 ? d : c) : e;  /* count(1*) */
9   return a;
12 // { dg-final { run-gcov remove-gcda ternary.C } }