aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/linux/builtin_trap/main.cpp
blob: 0ddf865ad097fa0ec704ed5edc163e389c754751 (plain)
1
2
3
4
5
6
7
8
void bar(int const *foo) {
  __builtin_trap(); // Set break point at this line.
}

int main() {
  int foo = 5;
  bar(&foo);
}