1*eca53ba6SRoland Levillain #include <iostream> 2*eca53ba6SRoland Levillain 3*eca53ba6SRoland Levillain #include "cpuinfo_x86.h" 4*eca53ba6SRoland Levillain 5*eca53ba6SRoland Levillain using namespace cpu_features; 6*eca53ba6SRoland Levillain main(int,char **)7*eca53ba6SRoland Levillainint main(int /*argc*/, char** /*argv*/) { 8*eca53ba6SRoland Levillain static const X86Features features = GetX86Info().features; 9*eca53ba6SRoland Levillain std::cout << std::endl; 10*eca53ba6SRoland Levillain return 0; 11*eca53ba6SRoland Levillain } 12