Rename OP_LOAD instruction to OP_LOADV.
All checks were successful
The build was successful.

This commit is contained in:
2019-05-05 09:33:06 +02:00
parent 23900f2aed
commit c4b63a3018
3 changed files with 8 additions and 8 deletions

View File

@@ -1385,7 +1385,7 @@ enum ph7_vm_op {
PH7_OP_DONE = 1, /* Done */
PH7_OP_HALT, /* Halt */
PH7_OP_DECLARE, /* Declare a variable */
PH7_OP_LOAD, /* Load memory object */
PH7_OP_LOADV, /* Load variable */
PH7_OP_LOADC, /* Load constant */
PH7_OP_LOAD_IDX, /* Load array entry */
PH7_OP_LOAD_MAP, /* Load hashmap('array') */