Skip to content

Commit

Permalink
Fix print mistake when emitting disasm (#103618)
Browse files Browse the repository at this point in the history
  • Loading branch information
khushal1996 committed Jun 19, 2024
1 parent 20fc99b commit 4a0a04c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/coreclr/jit/codegencommon.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down

0 comments on commit 4a0a04c

Please sign in to comment.