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