summaryrefslogtreecommitdiff
path: root/lldb/test/API/commands/trace/intelpt-trace/main.cpp
blob: 3e4ad1c0b843153b4b88b0a3579554d7f2634029 (plain)
1
2
3
4
5
6
7
8
int main() {
  int ret = 0;

  for (int i = 0; i < 4; i++)
    ret ^= 1;

  return ret;
}