added the fcb field to the awk value header

This commit is contained in:
2019-05-09 09:35:37 +00:00
parent 8682cc32e7
commit bd95bb3d2b
4 changed files with 21 additions and 8 deletions

View File

@ -157,15 +157,17 @@ typedef qse_floc_t qse_awk_loc_t;
/*
#define QSE_AWK_VAL_HDR \
unsigned int type: 4; \
unsigned int ref: 25; \
unsigned int ref: 24; \
unsigned int stat: 1; \
unsigned int nstr: 2
unsigned int nstr: 2; \
unsigned int fcb: 1
*/
#define QSE_AWK_VAL_HDR \
qse_uintptr_t v_type: 4; \
qse_uintptr_t ref: ((QSE_SIZEOF_UINTPTR_T * 8) - 7); \
qse_uintptr_t ref: ((QSE_SIZEOF_UINTPTR_T * 8) - 8); \
qse_uintptr_t stat: 1; \
qse_uintptr_t nstr: 2
qse_uintptr_t nstr: 2; \
qse_uintptr_t fcb: 1
/**
* The qse_awk_val_t type is an abstract value type. A value commonly contains: