mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
Support load 64-bit integer from mrb format with MRB_32BIT and MRB_INT64
This commit is contained in:
+2
-2
@@ -146,7 +146,7 @@ read_irep_record_1(mrb_state *mrb, const uint8_t *bin, size_t *len, uint8_t flag
|
||||
}
|
||||
break;
|
||||
case IREP_TT_INT64:
|
||||
#ifdef MRB_64BIT
|
||||
#ifdef MRB_INT64
|
||||
{
|
||||
uint64_t i64 = bin_to_uint32(src);
|
||||
src += sizeof(uint32_t);
|
||||
@@ -158,7 +158,7 @@ read_irep_record_1(mrb_state *mrb, const uint8_t *bin, size_t *len, uint8_t flag
|
||||
}
|
||||
break;
|
||||
#else
|
||||
return FALSE; /* INT64 not supported on MRB_32BIT */
|
||||
return FALSE;
|
||||
#endif
|
||||
|
||||
case IREP_TT_BIGINT:
|
||||
|
||||
Reference in New Issue
Block a user