repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[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
blob
48f564ce674e4d7e4d7b6517010e3499c10785b7
1
namespace
std
{
2
void
recursively_aborts
(
int
depth
) {
3
if
(
depth
==
0
)
4
__builtin_verbose_trap
(
"Error"
,
"max depth"
);
5
6
recursively_aborts
(--
depth
);
7
}
8
}
// namespace std
9
10
int
main
() {
11
std
::
recursively_aborts
(
256
);
12
return
0
;
13
}