Vararg table

Not yet optimized nor documented.
This commit is contained in:
Roberto I
2025-09-16 13:26:24 -03:00
parent 9ea06e61f2
commit 140b672e2e
9 changed files with 80 additions and 31 deletions

View File

@@ -583,8 +583,10 @@ typedef struct AbsLineInfo {
/*
** Flags in Prototypes
*/
#define PF_ISVARARG 1
#define PF_FIXED 2 /* prototype has parts in fixed memory */
#define PF_ISVARARG 1 /* function is vararg */
#define PF_VATAB 2 /* function is vararg with table */
#define PF_VAPTAB 4 /* function is vararg with pseudo-table */
#define PF_FIXED 8 /* prototype has parts in fixed memory */
/*