diff options
| author | Andreas Schwab | 2012-04-15 18:20:54 +0200 |
|---|---|---|
| committer | Andreas Schwab | 2012-04-15 18:20:54 +0200 |
| commit | d55c12ed1f80711ef27a52fa0ba6e366f0b7a585 (patch) | |
| tree | c8aec040114e98aeb95b6c035bae942a7de8be90 /src/ChangeLog | |
| parent | 7a76850c2022cf9e8ccadc972d76463f1055a7fe (diff) | |
| download | emacs-d55c12ed1f80711ef27a52fa0ba6e366f0b7a585.tar.gz emacs-d55c12ed1f80711ef27a52fa0ba6e366f0b7a585.zip | |
Simplify enforcement of object address alignment
* lisp.h (struct Lisp_Symbol): Remove explicit padding.
(struct Lisp_Misc_Any): Likewise.
(struct Lisp_Free): Likewise.
* alloc.c (union aligned_Lisp_Symbol): Define.
(SYMBOL_BLOCK_SIZE, struct symbol_block): Use union
aligned_Lisp_Symbol instead of struct Lisp_Symbol.
(union aligned_Lisp_Misc): Define.
(MARKER_BLOCK_SIZE, struct marker_block): Use union
aligned_Lisp_Misc instead of union Lisp_Misc.
(Fmake_symbol, allocate_misc, gc_sweep): Adjust
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index c58b87c7705..c602b25bdd9 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,16 @@ | |||
| 1 | 2012-04-15 Andreas Schwab <schwab@linux-m68k.org> | ||
| 2 | |||
| 3 | * lisp.h (struct Lisp_Symbol): Remove explicit padding. | ||
| 4 | (struct Lisp_Misc_Any): Likewise. | ||
| 5 | (struct Lisp_Free): Likewise. | ||
| 6 | * alloc.c (union aligned_Lisp_Symbol): Define. | ||
| 7 | (SYMBOL_BLOCK_SIZE, struct symbol_block): Use union | ||
| 8 | aligned_Lisp_Symbol instead of struct Lisp_Symbol. | ||
| 9 | (union aligned_Lisp_Misc): Define. | ||
| 10 | (MARKER_BLOCK_SIZE, struct marker_block): Use union | ||
| 11 | aligned_Lisp_Misc instead of union Lisp_Misc. | ||
| 12 | (Fmake_symbol, allocate_misc, gc_sweep): Adjust | ||
| 13 | |||
| 1 | 2012-04-14 Paul Eggert <eggert@cs.ucla.edu> | 14 | 2012-04-14 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 15 | ||
| 3 | Make GC_MAKE_GCPROS_NOOPS the default (Bug#9926). | 16 | Make GC_MAKE_GCPROS_NOOPS the default (Bug#9926). |