summaryrefslogtreecommitdiff
path: root/src/ChezScheme/c/ppc32.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ChezScheme/c/ppc32.c')
-rw-r--r--src/ChezScheme/c/ppc32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ChezScheme/c/ppc32.c b/src/ChezScheme/c/ppc32.c
index 803740ccd3..6607771e84 100644
--- a/src/ChezScheme/c/ppc32.c
+++ b/src/ChezScheme/c/ppc32.c
@@ -40,7 +40,7 @@ void S_doflush(uptr start, uptr end) {
#endif
start &= ~(l1_max_cache_line_size - 1);
- end = (end + l1_max_cache_line_size) & ~(l1_max_cache_line_size - 1);
+ end = (end + l1_max_cache_line_size - 1) & ~(l1_max_cache_line_size - 1);
for(i = start; i < end; i += l1_dcache_line_size) {
__asm__ __volatile__ ("dcbst 0, %0" :: "r" (i));