mirror of
https://github.com/janet-lang/janet
synced 2024-11-24 17:27:18 +00:00
Make encoding of immediate values capture full range.
This commit is contained in:
parent
4efcff33bd
commit
989f0726e3
@ -99,7 +99,7 @@ static JanetSlot opfunction(
|
|||||||
static int can_be_imm(Janet x, int8_t *out) {
|
static int can_be_imm(Janet x, int8_t *out) {
|
||||||
if (!janet_checkint(x)) return 0;
|
if (!janet_checkint(x)) return 0;
|
||||||
int32_t integer = janet_unwrap_integer(x);
|
int32_t integer = janet_unwrap_integer(x);
|
||||||
if (integer > 127 || integer < -127) return 0;
|
if (integer > INT8_MAX || integer < INT8_MIN) return 0;
|
||||||
*out = (int8_t) integer;
|
*out = (int8_t) integer;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user