bolt/deps/llvm-18.1.8/lldb/test/API/linux/builtin_trap/main.cpp
2025-02-14 19:21:04 +01:00

8 lines
126 B
C++

void bar(int const *foo) {
__builtin_trap(); // Set break point at this line.
}
int main() {
int foo = 5;
bar(&foo);
}