From 65f290b699d1e6ab1ced38e3dd5806faf27a46a8 Mon Sep 17 00:00:00 2001 From: Dmitry Babokin Date: Fri, 12 Feb 2016 16:12:33 +0300 Subject: [PATCH] Correcting Target::ISAToString() to report AVX512KNL as "avx512knl", but not "avx512knl-i32x16". It affects reporting, mangling and ISPC_TARGET_* macro. --- ispc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ispc.cpp b/ispc.cpp index 8b6b300a..14bb1f02 100644 --- a/ispc.cpp +++ b/ispc.cpp @@ -1217,7 +1217,7 @@ Target::ISAToString(ISA isa) { return "avx2"; #if ISPC_LLVM_VERSION >= ISPC_LLVM_3_7 // LLVM 3.7+ case Target::KNL_AVX512: - return "avx512knl-i32x16"; + return "avx512knl"; #endif case Target::SKX: return "skx";