From 4a0a04cf3e8b8c2a3613270df7f838246e4597e8 Mon Sep 17 00:00:00 2001 From: Khushal Modi Date: Tue, 18 Jun 2024 20:08:58 -0700 Subject: [PATCH] Fix print mistake when emitting disasm (#103618) --- src/coreclr/jit/codegencommon.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/coreclr/jit/codegencommon.cpp b/src/coreclr/jit/codegencommon.cpp index 2a1d7652ac541..ddada03b91944 100644 --- a/src/coreclr/jit/codegencommon.cpp +++ b/src/coreclr/jit/codegencommon.cpp @@ -1859,17 +1859,17 @@ void CodeGen::genGenerateMachineCode() { if (compiler->compOpportunisticallyDependsOn(InstructionSet_AVX10v1_V512)) { - printf("X86 with AVX10/512"); + printf("X64 with AVX10/512"); } else { - printf("X86 with AVX10/256"); + printf("X64 with AVX10/256"); } } else { assert(compiler->compIsaSupportedDebugOnly(InstructionSet_AVX512F)); - printf("X86 with AVX512"); + printf("X64 with AVX512"); } } else if (compiler->canUseVexEncoding())