Make encoding of immediate values capture full range.

This commit is contained in:
Calvin Rose 2023-07-14 10:06:20 -05:00
parent 4efcff33bd
commit 989f0726e3
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ static JanetSlot opfunction(
static int can_be_imm(Janet x, int8_t *out) {
if (!janet_checkint(x)) return 0;
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;
return 1;
}