diff options
author | Nobuyoshi Nakada <[email protected]> | 2021-12-29 14:09:37 +0900 |
---|---|---|
committer | GitHub <[email protected]> | 2021-12-29 14:09:37 +0900 |
commit | 4e4c4fab3c25a056688939ae8e003a049fc401ee (patch) | |
tree | a09f9697b8ce7dd3428e3cf15c1f13557873b7aa /yjit_core.c | |
parent | 5ca51ddde81cd7f338d0dd495ceb8569def60647 (diff) |
YJIT: Use proper size prefix and conversion where IL32LLP64
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/5369
Merged-By: nobu <[email protected]>
Diffstat (limited to 'yjit_core.c')
-rw-r--r-- | yjit_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yjit_core.c b/yjit_core.c index a3b52971fb..fbe855d04b 100644 --- a/yjit_core.c +++ b/yjit_core.c @@ -1319,7 +1319,7 @@ invalidate_block_version(block_t *block) regenerate_branch(cb, branch); if (target_next && branch->end_addr > block->end_addr) { - fprintf(stderr, "branch_block_idx=%u block_idx=%u over=%ld block_size=%ld\n", + fprintf(stderr, "branch_block_idx=%u block_idx=%u over=%td block_size=%td\n", branch->block->blockid.idx, block->blockid.idx, branch->end_addr - block->end_addr, |