xref: /llvm-project/compiler-rt/test/profile/Inputs/instrprof-dynamic-main.cpp (revision ba6e2ae0c56d551b19a909e04f8dc2e864e0a383)
108439885SDuncan P. N. Exon Smith #include "instrprof-dynamic-header.h"
foo(int K)208439885SDuncan P. N. Exon Smith void foo(int K) { if (K) {} }
main(int argc,char * argv[])308439885SDuncan P. N. Exon Smith int main(int argc, char *argv[]) {
408439885SDuncan P. N. Exon Smith   foo(5);
5*ba6e2ae0SJustin Bogner   bar<void>(1);
608439885SDuncan P. N. Exon Smith   a();
708439885SDuncan P. N. Exon Smith   b();
808439885SDuncan P. N. Exon Smith   return 0;
908439885SDuncan P. N. Exon Smith }
10