From 2adb6e857867449beb24faf7b361e7c3c3904c88 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Fri, 16 Dec 2011 17:05:26 -0800 Subject: [PATCH] * s/gnu-linux.h: Fix mark_memory typo (Bug#10286). (GC_MARK_SECONDARY_STACK): Omit removed 3rd arg to mark_memory, which caused a build failure on GNU/Linux IA-64. This problem was introduced by my 2011-10-07 patch. --- src/ChangeLog | 7 +++++++ src/s/gnu-linux.h | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index f8fa66d0046..98e87ef4306 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,10 @@ +2011-12-17 Paul Eggert + + * s/gnu-linux.h: Fix mark_memory typo (Bug#10286). + (GC_MARK_SECONDARY_STACK): Omit removed 3rd arg to mark_memory, + which caused a build failure on GNU/Linux IA-64. This problem was + introduced by my 2011-10-07 patch. + 2011-12-15 Juri Linkov * image.c (imagemagick_error): New function. (Bug#10112) diff --git a/src/s/gnu-linux.h b/src/s/gnu-linux.h index 3d78bf695bc..d89b14cc080 100644 --- a/src/s/gnu-linux.h +++ b/src/s/gnu-linux.h @@ -155,7 +155,7 @@ along with GNU Emacs. If not, see . */ extern void *__libc_ia64_register_backing_store_base; \ __builtin_ia64_flushrs (); \ mark_memory (__libc_ia64_register_backing_store_base, \ - __builtin_ia64_bsp (), 0); \ + __builtin_ia64_bsp ()); \ } while (0) #endif #endif -- 2.39.2