From f4cb9cc9034c09a8798df3d98f6fa9313a777a96 Mon Sep 17 00:00:00 2001 From: Andrea Corallo Date: Fri, 27 Dec 2019 15:57:31 +0100 Subject: [PATCH] rename IMPORTED_FUNC_LINK_TABLE -> FUNC_LINK_TABLE_SYM --- src/comp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/comp.c b/src/comp.c index 98ee6c19a2a..85b0983a6df 100644 --- a/src/comp.c +++ b/src/comp.c @@ -38,7 +38,7 @@ along with GNU Emacs. If not, see . */ #define CURRENT_THREAD_RELOC_SYM "current_thread_reloc" #define PURE_RELOC_SYM "pure_reloc" #define DATA_RELOC_SYM "d_reloc" -#define IMPORTED_FUNC_LINK_TABLE "freloc_link_table" +#define FUNC_LINK_TABLE_SYM "freloc_link_table" #define TEXT_DATA_RELOC_SYM "text_data_reloc" #define SPEED XFIXNUM (Fsymbol_value (Qcomp_speed)) @@ -1873,7 +1873,7 @@ emit_ctxt_code (void) NULL, GCC_JIT_GLOBAL_EXPORTED, gcc_jit_type_get_pointer (gcc_jit_struct_as_type (f_reloc_struct)), - IMPORTED_FUNC_LINK_TABLE); + FUNC_LINK_TABLE_SYM); xfree (fields); } @@ -3223,7 +3223,7 @@ load_comp_unit (struct Lisp_Native_Comp_Unit *comp_u, bool loading_dump) dynlib_sym (handle, CURRENT_THREAD_RELOC_SYM); EMACS_INT ***pure_reloc = dynlib_sym (handle, PURE_RELOC_SYM); Lisp_Object *data_relocs = dynlib_sym (handle, DATA_RELOC_SYM); - void **freloc_link_table = dynlib_sym (handle, IMPORTED_FUNC_LINK_TABLE); + void **freloc_link_table = dynlib_sym (handle, FUNC_LINK_TABLE_SYM); void (*top_level_run)(Lisp_Object) = dynlib_sym (handle, "top_level_run"); if (!(current_thread_reloc -- 2.39.5