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

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'bolt/test/X86/Inputs/avx512.c')
-rw-r--r--bolt/test/X86/Inputs/avx512.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/bolt/test/X86/Inputs/avx512.c b/bolt/test/X86/Inputs/avx512.c
index 719037968423..25f9502234bd 100644
--- a/bolt/test/X86/Inputs/avx512.c
+++ b/bolt/test/X86/Inputs/avx512.c
@@ -1,14 +1,9 @@
-#include <stdio.h>
-
void use_avx512() {
- printf("after first entry\n");
asm (".byte 0x62, 0xe2, 0xf5, 0x70, 0x2c, 0xda");
- asm ("secondary_entry:");
- printf("after secondary entry\n");
+ asm("secondary_entry:");
}
int main() {
- printf("about to use avx-512 instruction...\n");
use_avx512();
return 0;