Remove the silly sleep again

This commit is contained in:
Magnus Norddahl 2016-11-29 01:55:45 +01:00
parent 37078f7fef
commit 0bb179c0c2
1 changed files with 1 additions and 5 deletions

View File

@ -617,8 +617,7 @@ std::string LLVMProgram::DumpModule()
}
/////////////////////////////////////////////////////////////////////////////
#include <chrono>
#include <thread>
int main(int argc, char **argv)
{
if (argc != 2)
@ -661,8 +660,5 @@ 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;
}