cvs
Slava Pestov 2005-12-25 06:00:10 +00:00
parent a385475394
commit 2f73851117
2 changed files with 1 additions and 2 deletions

View File

@ -13,7 +13,6 @@ kernel-internals sequences ;
: ds-reg ESI ; inline : ds-reg ESI ; inline
: cs-reg EBX ; inline : cs-reg EBX ; inline
: return-reg EAX ; inline
: remainder-reg EDX ; inline : remainder-reg EDX ; inline
: vregs { EAX ECX EDX } ; inline : vregs { EAX ECX EDX } ; inline

View File

@ -4,7 +4,7 @@ void primitive_hashtable(void)
{ {
F_HASHTABLE* hash; F_HASHTABLE* hash;
maybe_gc(0); maybe_gc(0);
hash = allot_object(HASHTABLE_TYPE,sizeof(F_VECTOR)); hash = allot_object(HASHTABLE_TYPE,sizeof(F_HASHTABLE));
hash->count = F; hash->count = F;
hash->deleted = F; hash->deleted = F;
hash->array = F; hash->array = F;