[Mips] Add the missing judgment when processing function handleMFLOSlot (#121463)
[llvm-project.git] / lldb / test / Shell / Recognizer / Inputs / verbose_trap-in-stl-callback.cpp
blob23beed4c62c3b3d77301d5b898cb7c846e802de2
1 namespace std {
2 void definitely_aborts() { __builtin_verbose_trap("Failed", "Invariant violated"); }
4 void aborts_soon() { definitely_aborts(); }
5 } // namespace std
7 void g() { std::aborts_soon(); }
9 namespace std {
10 namespace detail {
11 void eventually_aborts() { g(); }
12 } // namespace detail
14 inline namespace __1 {
15 void eventually_aborts() { detail::eventually_aborts(); }
16 } // namespace __1
17 } // namespace std
19 int main() {
20 std::eventually_aborts();
21 return 0;