summaryrefslogtreecommitdiff
path: root/lldb/test/API/commands/trace/intelpt-trace-multi-file/foo.cpp
blob: 5cfd6854a0cd5d3eae4547a08e607677884c22d1 (plain)
1
2
3
4
5
6
7
#include "bar.h"

int foo() {
  int y = bar();
  y++;
  return y;
}