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