Open
Description
Sorry for stupid question, but...
The docs mention have the following description for instruction:
Loads the
int64
value at address addr onto the stack as anint64
.
And mention next:
Note that integer values of less than 4 bytes are extended to int32 (not native int) when they are loaded onto the evaluation stack. Floating-point values are converted to F type when loaded onto the evaluation stack.
But what will happen with values less than 8 bytes? Isn't int64
8 bytes? Am I missing something or should this be mentioned/fixed in the docs?