mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-08-26 17:13:35 +03:00
LQ_QUANTUM should be 4 on mips64 hardware.
This matches the ABI stack alignment requirements.
This commit is contained in:
parent
eda9c2858f
commit
27f29e424b
1 changed files with 5 additions and 1 deletions
|
|
@ -34,7 +34,11 @@
|
||||||
# define LG_QUANTUM 3
|
# define LG_QUANTUM 3
|
||||||
# endif
|
# endif
|
||||||
# ifdef __mips__
|
# ifdef __mips__
|
||||||
# define LG_QUANTUM 3
|
# if defined(__mips_n32) || defined(__mips_n64)
|
||||||
|
# define LG_QUANTUM 4
|
||||||
|
# else
|
||||||
|
# define LG_QUANTUM 3
|
||||||
|
# endif
|
||||||
# endif
|
# endif
|
||||||
# ifdef __nios2__
|
# ifdef __nios2__
|
||||||
# define LG_QUANTUM 3
|
# define LG_QUANTUM 3
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue