Minor Cleanup

This commit is contained in:
niravthakkar 2016-12-06 19:34:47 +05:30 committed by GitHub
parent ba4343d9d1
commit 1362e9aee2

View File

@ -291,8 +291,9 @@ local function is_int32(num)
return -2147483648 <= num and num < 2147483648
end
local function_is_int16(num)
local function is_int16(num)
return -32768 <= num and num < 32768
end
-- Split a memory operand of the form d(b) or d(x,b) into d, x and b.
-- If x is not specified then it is 0.