[Mips] Add the missing judgment when processing function handleMFLOSlot (#121463)
[llvm-project.git] / lldb / test / Shell / Recognizer / Inputs / verbose_trap-in-stl-max-depth.cpp
blob48f564ce674e4d7e4d7b6517010e3499c10785b7
1 namespace std {
2 void recursively_aborts(int depth) {
3 if (depth == 0)
4 __builtin_verbose_trap("Error", "max depth");
6 recursively_aborts(--depth);
8 } // namespace std
10 int main() {
11 std::recursively_aborts(256);
12 return 0;