algorithmes GC Java 8

#include "cpuinfo_x86.h"

// For C++, add `using namespace CpuFeatures;`
static const X86Features features = GetX86Info().features;

void Compute(void) {
  if (features.aes && features.sse4_2) {
    // Run optimized code.
  } else {
    // Run standard code.
  }
}
Foolish Frog