(Jack:) Align mapping entries to 4-words if USE_CACHE_ALIGNED is defined.

This commit is contained in:
Guido van Rossum 1997-04-11 19:14:07 +00:00
parent fd16d9438d
commit 3648884490
2 changed files with 6 additions and 0 deletions

View File

@ -97,6 +97,9 @@ typedef struct {
long me_hash;
object *me_key;
object *me_value;
#ifdef USE_CACHE_ALIGNED
long aligner;
#endif
} mappingentry;
/*

View File

@ -97,6 +97,9 @@ typedef struct {
long me_hash;
object *me_key;
object *me_value;
#ifdef USE_CACHE_ALIGNED
long aligner;
#endif
} mappingentry;
/*