Welcome to mirror list, hosted at ThFree Co, Russian Federation.

avx512.c « Inputs « X86 « test « bolt - github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 25f9502234bdddc8749bc35c09712a75a65b546d (plain)
1
2
3
4
5
6
7
8
9
10
void use_avx512() {
  asm (".byte 0x62, 0xe2, 0xf5, 0x70, 0x2c, 0xda");
  asm("secondary_entry:");
}

int main() {
  use_avx512();

  return 0;
}