Removed static assertion about size of RVALUE

It is unable where unaligned word access is disallowed and
`double` is wider than pointers.
This commit is contained in:
Nobuyoshi Nakada 2021-01-31 17:45:35 +09:00
parent 49918b3984
commit e44870c225
No known key found for this signature in database
GPG Key ID: 7CD2805BFA3770C6

2
gc.c
View File

@ -608,8 +608,6 @@ typedef struct RVALUE {
#pragma pack(pop)
#endif
STATIC_ASSERT(sizeof_rvalue, sizeof(RVALUE) == 5*SIZEOF_VALUE);
typedef uintptr_t bits_t;
enum {
BITS_SIZE = sizeof(bits_t),