* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / defarg4.C
blobace3ee2201be003a3b5a199702d205d28dad2862
1 // { dg-do assemble  }
2 // Origin: scott snyder <snyder@fnal.gov>
4 class complex
6 public:
7   complex();
8 };
10 struct MLC33
12   MLC33( const complex& = complex() );
15 void EmptyClone()
17   MLC33();
20 void makeM33()
22   MLC33();
25 void Clone()
27   MLC33();