changed the byte code for push_intlit and push_negintlit.

added a new byte code push_charlit
This commit is contained in:
hyunghwan.chung
2016-09-14 04:56:00 +00:00
parent 0504fbde72
commit ab5dee8c77
5 changed files with 53 additions and 17 deletions

View File

@ -3789,6 +3789,11 @@ return -1;
STIX_STACK_PUSH (stix, STIX_SMOOI_TO_OOP(-b1));
break;
case BCODE_PUSH_CHARLIT:
FETCH_PARAM_CODE_TO (stix, b1);
LOG_INST_1 (stix, "push_charlit %zd", b1);
STIX_STACK_PUSH (stix, STIX_CHAR_TO_OOP(b1));
break;
/* -------------------------------------------------------- */
case BCODE_DUP_STACKTOP: