File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -448,13 +448,13 @@ static int zend_jit_disasm(const char *name,
448
448
449
449
# ifdef HAVE_CAPSTONE_ITER
450
450
if (JIT_G (debug ) & ZEND_JIT_DEBUG_ASM_ADDR ) {
451
- fprintf (stderr , " " ZEND_XLONG_FMT ":" , insn -> address );
451
+ fprintf (stderr , " %" PRIx64 ":" , insn -> address );
452
452
}
453
453
fprintf (stderr , "\t%s " , insn -> mnemonic );
454
454
p = insn -> op_str ;
455
455
# else
456
456
if (JIT_G (debug ) & ZEND_JIT_DEBUG_ASM_ADDR ) {
457
- fprintf (stderr , " " ZEND_XLONG_FMT ":" , insn [i ].address );
457
+ fprintf (stderr , " %" PRIx64 ":" , insn [i ].address );
458
458
}
459
459
fprintf (stderr , "\t%s " , insn [i ].mnemonic );
460
460
p = insn [i ].op_str ;
@@ -556,7 +556,7 @@ static int zend_jit_disasm(const char *name,
556
556
}
557
557
}
558
558
if (JIT_G (debug ) & ZEND_JIT_DEBUG_ASM_ADDR ) {
559
- fprintf (stderr , " " ZEND_XLONG_FMT ":" , ud_insn_off (& ud ));
559
+ fprintf (stderr , " %" PRIx64 ":" , ud_insn_off (& ud ));
560
560
}
561
561
fprintf (stderr , "\t%s\n" , ud_insn_asm (& ud ));
562
562
}
You can’t perform that action at this time.
0 commit comments