xref: /llvm-project/lldb/test/API/commands/trace/intelpt-trace-multi-file/foo.cpp (revision cfd96f057ba4256fef49518cad43d0a7f591da12)
1 #include "bar.h"
2 
foo()3 int foo() {
4   int y = bar();
5   y++;
6   return y;
7 }
8