summaryrefslogtreecommitdiff
path: root/include/jemalloc
diff options
context:
space:
mode:
authorbarracuda156 <vital.had@gmail.com>2022-05-21 23:36:15 +0800
committerDavid Goldblatt <davidtgoldblatt@gmail.com>2022-05-26 10:51:10 -0700
commit70e3735f3a71d3e05faa05c58ff3ca82ebaad908 (patch)
treee78791022a787141b754bd4e40c8b348400d64ee /include/jemalloc
parent5b1f2cc5d79672e0d8852da1b705d68a74d22cd4 (diff)
downloadjemalloc-70e3735f3a71d3e05faa05c58ff3ca82ebaad908.tar.gz
jemalloc: fix PowerPC definitions in quantum.h
Diffstat (limited to 'include/jemalloc')
-rw-r--r--include/jemalloc/internal/quantum.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/jemalloc/internal/quantum.h b/include/jemalloc/internal/quantum.h
index c22d753a..a97f54ca 100644
--- a/include/jemalloc/internal/quantum.h
+++ b/include/jemalloc/internal/quantum.h
@@ -49,7 +49,7 @@
# ifdef __or1k__
# define LG_QUANTUM 3
# endif
-# ifdef __powerpc__
+# if defined(__powerpc__) || defined(__ppc__) || defined(__powerpc64__) || defined(__ppc64__)
# define LG_QUANTUM 4
# endif
# if defined(__riscv) || defined(__riscv__)