enhanced compile_class_attr_list() with data table and binary search
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@ -379,13 +379,13 @@ int hcl_decode (hcl_t* hcl, const hcl_code_t* code, hcl_oow_t start, hcl_oow_t e
|
||||
|
||||
case HCL_CODE_CLASS_ENTER:
|
||||
{
|
||||
hcl_oow_t b0, b3;
|
||||
|
||||
FETCH_BYTE_CODE_TO (hcl, b0);
|
||||
hcl_oow_t b3, b4, b5;
|
||||
FETCH_PARAM_CODE_TO (hcl, b1);
|
||||
FETCH_PARAM_CODE_TO (hcl, b2);
|
||||
FETCH_PARAM_CODE_TO (hcl, b3);
|
||||
LOG_INST_4 (hcl, "class_enter %zu %zu %zu %zu", b0, b1, b2, b3);
|
||||
FETCH_BYTE_CODE_TO (hcl, b4); /* spec/selfspec */
|
||||
FETCH_BYTE_CODE_TO (hcl, b5); /* indexed_type */
|
||||
LOG_INST_5 (hcl, "class_enter %zu %zu %zu %#zx %zu", b1, b2, b3, b4, b5);
|
||||
break;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user