Skip to content

Commit

Permalink
fix alignment issues on ia64, sparc and mipsel, courtesy of Alessandr…
Browse files Browse the repository at this point in the history
…o Ghedini
  • Loading branch information
cotto committed Apr 16, 2012
1 parent 446acba commit 76fd663
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/gc/fixed_allocator.h
Expand Up @@ -28,11 +28,12 @@ src/gc/fixed_allocator.h - implementation of allocator for small-size objects.

typedef struct Pool_Allocator_Free_List {
struct Pool_Allocator_Free_List * next;

char *dummy; /* fix alignment on ia64, mipsel and sparc, similar to gh issue #603 */
} Pool_Allocator_Free_List;

typedef struct Pool_Allocator_Arena {
struct Pool_Allocator_Arena * next;
char *dummy; /* fix alignment on ia64, mipsel and sparc, similar to gh issue #603 */
} Pool_Allocator_Arena;

typedef struct Pool_Allocator {
Expand Down

0 comments on commit 76fd663

Please sign in to comment.