Skip to content

Commit e6cf454

Browse files
committed
Add debug print
1 parent bc6c8cc commit e6cf454

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/coreclr/jit/hwintrinsiccodegenxarch.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -407,8 +407,9 @@ void CodeGen::genHWIntrinsic(GenTreeHWIntrinsic* node)
407407
if (!compiler->compIsaSupportedDebugOnly(isa))
408408
{
409409
printf("Avx10v2: %d\n", InstructionSet_AVX10v2);
410-
printf("Avx10v2: %d\n", InstructionSet_AVXVNNIINT8);
411-
printf("Avx10v2: %d\n", InstructionSet_AVXVNNIINT16);
410+
printf("AvxVnniInt8: %d\n", InstructionSet_AVXVNNIINT8);
411+
printf("AvxVnniInt16: %d\n", InstructionSet_AVXVNNIINT16);
412+
printf("ISA: %d\n", isa);
412413
}
413414
assert(compiler->compIsaSupportedDebugOnly(isa));
414415
assert(HWIntrinsicInfo::RequiresCodegen(intrinsicId));

0 commit comments

Comments
 (0)