LQ_QUANTUM should be 4 on mips64 hardware.

This matches the ABI stack alignment requirements.
This commit is contained in:
Brooks Davis 2020-05-01 22:08:37 +01:00 committed by David Goldblatt
parent eda9c2858f
commit 27f29e424b

View File

@ -34,7 +34,11 @@
# define LG_QUANTUM 3
# endif
# ifdef __mips__
# define LG_QUANTUM 3
# if defined(__mips_n32) || defined(__mips_n64)
# define LG_QUANTUM 4
# else
# define LG_QUANTUM 3
# endif
# endif
# ifdef __nios2__
# define LG_QUANTUM 3