xref: /aosp_15_r20/external/cpu_features/cmake/ci/sample/main.cpp (revision eca53ba6d2e951e174b64682eaf56a36b8204c89)
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 Levillain int 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