view lldb/test/API/commands/frame/select/main.cpp @ 150:1d019706d866

LLVM10
author anatofuz
date Thu, 13 Feb 2020 15:10:13 +0900
parents
children
line wrap: on
line source

int nested3() {
  return 3; // Set break point at this line.
}

int nested2() {
  return 2 + nested3();
}

int nested1() {
  return 1 + nested2();
}


int main(int argc, char **argv) {
  return nested1();
}