summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Wu <XrXr@users.noreply.github.com>2021-02-12 14:52:08 -0500
committerAlan Wu <XrXr@users.noreply.github.com>2021-10-20 18:19:29 -0400
commit148ab79cd7a3d17f310c444041e93f30c1f1acac (patch)
tree6636b90b453ced4b96b048d011f7fa35bc19bf9c
parent0b8473c4b4cb8d2d70d7e0db3178f80557ea8cc7 (diff)
oops
-rw-r--r--ujit_asm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ujit_asm.c b/ujit_asm.c
index a67eb7f7d6..5f53ca35c0 100644
--- a/ujit_asm.c
+++ b/ujit_asm.c
@@ -897,7 +897,7 @@ void call_ptr(codeblock_t* cb, x86opnd_t scratch_reg, uint8_t* dst_ptr)
// If the offset fits in 32-bit
if (rel64 >= -2147483648 && rel64 <= 2147483647)
{
- call_rel32(cb, (int32_t)rel64)
+ call_rel32(cb, (int32_t)rel64);
return;
}