diff --git a/yjit_asm.c b/yjit_asm.c index 64b002c45a..60873bb476 100644 --- a/yjit_asm.c +++ b/yjit_asm.c @@ -178,7 +178,7 @@ void cb_align_pos(codeblock_t* cb, uint32_t multiple) uint32_t rem = ((uint32_t)ptr) % multiple; // If the pointer is already aligned, stop - if (rem != 0) + if (rem == 0) return; // Pad the pointer by the necessary amount to align it