From 0aceb2f8bbe24c9b9b32f9134966b98f3b78b1d5 Mon Sep 17 00:00:00 2001 From: dzaima Date: Thu, 22 Jul 2021 01:24:14 +0300 Subject: [PATCH] correct outdated comments in h.h --- src/h.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/h.h b/src/h.h index 77a6ba9a..3ade2a22 100644 --- a/src/h.h +++ b/src/h.h @@ -187,9 +187,9 @@ enum ElType { // a⌈b shall return the type that can store both, if possible; a typedef struct Value { i32 refc; // plain old reference count - u8 mmInfo; // bucket size, mark&sweep bits when that's needed; currently unused + u8 mmInfo; // bucket size, mark&sweep bits when that's needed u8 flags; // is sorted/a permutation/whatever in the future, currently primitive index for self-hosted runtime - u8 type; // access into ti_*, among generally knowing what type of object this is + u8 type; // used by TI, among generally knowing what type of object this is ur extra; // whatever object-specific stuff. Rank for arrays, id for functions #ifdef OBJ_COUNTER u64 uid;