that build.bqn TODO has been completed for a while
This commit is contained in:
dzaima 2024-12-03 11:03:56 +02:00
parent ed1fe6cc3e
commit 7a5f42a7f0
2 changed files with 3 additions and 5 deletions

View File

@ -1,7 +1,5 @@
t0g •MonoTime@
# todo:
# forcing bytecode/singeli/replxx directories to whatever's applicable
# cache warning messages
# todo: forcing bytecode/singeli/replxx directories to whatever's applicable
Spawn, WaitForOne •Import "fork.bqn"
Serialize, Deserialize •Import "serialize.bqn"

View File

@ -282,8 +282,8 @@ typedef struct WrappedObj {
#define V_POS(X) ((u32)((X).u))
#define V_DEPTH(X) ((u16)((X).u>>32))
static u32 v_bad17_read = (TAG_TAG<<1) | 1;
static u32 v_bad18_write = (TAG_TAG<<2) | 3;
static const u32 v_bad17_read = (TAG_TAG<<1) | 1;
static const u32 v_bad18_write = (TAG_TAG<<2) | 3;
SHOULD_INLINE bool v_checkBadRead(B x) { return (x.u >> 47) == v_bad17_read; }
SHOULD_INLINE bool v_checkBadWrite(B x) { return (x.u >> 46) == v_bad18_write; }
NOINLINE NORETURN void v_tagError(B x, bool write);