Add a silly sleep

This commit is contained in:
Magnus Norddahl 2016-11-29 01:19:20 +01:00
parent f808bcb8d2
commit 1ac0fd1a90
1 changed files with 5 additions and 1 deletions

View File

@ -617,7 +617,8 @@ std::string LLVMProgram::DumpModule()
}
/////////////////////////////////////////////////////////////////////////////
#include <chrono>
#include <thread>
int main(int argc, char **argv)
{
if (argc != 2)
@ -660,5 +661,8 @@ int main(int argc, char **argv)
//LLVMDrawers drawersAVX("sandybridge");
//LLVMDrawers drawersAVX2("haswell");
using namespace std::chrono_literals;
std::this_thread::sleep_for(2s); // Doh! Silly OS!
return 0;
}