* i386.h (MIN_UNITS_PER_WORD): Define to 8 for x86-64 libgcc.

From-SVN: r58986
This commit is contained in:
Jan Hubicka 2002-11-10 18:52:50 +01:00 committed by Jan Hubicka
parent a2eb270a7e
commit 2e64c6362c
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Sun Nov 10 18:49:21 CET 2002 Jan Hubicka <jh@suse.cz>
* i386.h (MIN_UNITS_PER_WORD): Define to 8 for x86-64 libgcc.
2002-11-10 Joseph S. Myers <jsm@polyomino.org.uk>
* c-decl.c (grokdeclarator): Make error for duplicate type

View File

@ -691,7 +691,11 @@ extern int x86_prefetch_sse;
/* Width of a word, in units (bytes). */
#define UNITS_PER_WORD (TARGET_64BIT ? 8 : 4)
#define MIN_UNITS_PER_WORD 4
#ifdef IN_LIBGCC2
#define MIN_UNITS_PER_WORD (TARGET_64BIT ? 8 : 4)
#else
#define MIN_UNITS_PER_WORD 4
#endif
/* Allocation boundary (in *bits*) for storing arguments in argument list. */
#define PARM_BOUNDARY BITS_PER_WORD