diff --git a/library/compiler/x86/architecture.factor b/library/compiler/x86/architecture.factor index 39e23b2535..d77b446f7c 100644 --- a/library/compiler/x86/architecture.factor +++ b/library/compiler/x86/architecture.factor @@ -13,7 +13,6 @@ kernel-internals sequences ; : ds-reg ESI ; inline : cs-reg EBX ; inline -: return-reg EAX ; inline : remainder-reg EDX ; inline : vregs { EAX ECX EDX } ; inline diff --git a/native/hashtable.c b/native/hashtable.c index 7c5c824aaf..9f3cb8ba23 100644 --- a/native/hashtable.c +++ b/native/hashtable.c @@ -4,7 +4,7 @@ void primitive_hashtable(void) { F_HASHTABLE* hash; maybe_gc(0); - hash = allot_object(HASHTABLE_TYPE,sizeof(F_VECTOR)); + hash = allot_object(HASHTABLE_TYPE,sizeof(F_HASHTABLE)); hash->count = F; hash->deleted = F; hash->array = F;