Skip to content

Commit d11e681

Browse files
committed
WIP: stdout
Signed-off-by: Máté Tokodi [email protected]
1 parent b28592d commit d11e681

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/jit/SimdArm64Inl.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -604,10 +604,10 @@ static void simdEmitDot(sljit_compiler* compiler, uint32_t type, sljit_s32 rd, s
604604
{
605605
// The rd can be tmpReg1
606606
#ifdef __ARM_FEATURE_DOTPROD
607-
fprintf(stderr, "SimdArm64Inl.h: simdEmitDot: using short path");
607+
fprintf(stdout, "SimdArm64Inl.h: simdEmitDot: using short path\n");
608608
simdEmitOp(compiler, SimdOp::sdot | type, rd, rn, rm);
609609
#else
610-
fprintf(stderr, "SimdArm64Inl.h: simdEmitDot: using long path");
610+
fprintf(stdout, "SimdArm64Inl.h: simdEmitDot: using long path\n");
611611
sljit_s32 tmpReg1 = SLJIT_TMP_FR0;
612612
sljit_s32 tmpReg2 = SLJIT_TMP_FR1;
613613
uint32_t lowType = type - (0x1 << SimdOp::sizeOffset);

0 commit comments

Comments
 (0)