Revert "[LoongArch] Eliminate the redundant sign extension of division (#107971)"
[llvm-project.git] / lldb / test / API / functionalities / deleted-executable / main.cpp
blobaf00ac263cc1b2ce43645e589556d8e9cc3eb69c
1 #include <chrono>
2 #include <fstream>
3 #include <thread>
5 int main(int argc, char const *argv[]) {
6 lldb_enable_attach();
9 // Create file to signal that this process has started up.
10 std::ofstream f;
11 f.open(argv[1]);
14 std::this_thread::sleep_for(std::chrono::seconds(60));