xref: /netbsd-src/sys/external/bsd/compiler_rt/dist/test/profile/Inputs/instrprof-comdat-2.cpp (revision ef84fd3bd8895f4e6be1e38baf19e6dc3255bc64)
1 #include "instrprof-comdat.h"
2 
bar(int I)3 int bar(int I) {
4 
5   FOO<long> Foo;
6   FOO<int> Foo2;
7 
8   if (I > 5)
9     return (int)Foo.DoIt(10);
10   else
11     return (int)Foo2.DoIt(I);
12 }
13