This commit is contained in:
2026-05-10 15:55:25 -05:00
parent 65aedb5a49
commit 3a40eda575
4 changed files with 23 additions and 9 deletions

View File

@@ -15,6 +15,11 @@ typedef struct {
static_assert(sizeof(VALUE) <= 8, "VALUE must be < 8 bytes");
static TYC_TYPE value_type(VALUE v)
{
return v.type;
}
static int32_t value_integer(VALUE v)
{
#ifdef CHECK_TYCHE_BUGS