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
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
lldb
/
test
/
Shell
/
Driver
/
Inputs
/
CommandOnCrashMultiThreaded.cpp
blob
f469d82fbbef9decb97885cb7cfcbced74eabd3e
1
#include <thread>
2
3
void
t_func
() {
4
asm
volatile
(
5
"int3
\n\t
"
6
);
7
}
8
9
int
main
() {
10
std
::
thread
t
(
t_func
);
11
t
.
join
();
12
return
0
;
13
}