xref: /aosp_15_r20/external/compiler-rt/test/profile/Inputs/instrprof-comdat-1.cpp (revision 7c3d14c8b49c529e04be81a3ce6f5cc23712e4c6)
1 #include "instrprof-comdat.h"
2 int g;
3 extern int bar(int);
4 
main()5 int main() {
6 
7   FOO<int> Foo;
8 
9   int Res = Foo.DoIt(10);
10 
11   if (Res > 10)
12     g = bar(10);
13   else
14     g = bar(1) + bar(2);
15   return 0;
16 }
17 
18