1
0
mirror of https://github.com/google/cpu_features.git synced 2025-04-28 23:43:37 +02:00
2022-03-15 13:26:25 +01:00

12 lines
221 B
C++

#include <iostream>
#include "cpuinfo_x86.h"
using namespace cpu_features;
int main(int /*argc*/, char** /*argv*/) {
static const X86Features features = GetX86Info().features;
std::cout << std::endl;
return 0;
}