From 6a3624eecbc0a116b293d05e044b8b40a86022e9 Mon Sep 17 00:00:00 2001 From: Andrea Corallo Date: Sun, 24 Nov 2019 23:22:49 +0100 Subject: [PATCH] fix wrong enum usage into declare_function --- src/comp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/comp.c b/src/comp.c index fd7707a2630..be92893d659 100644 --- a/src/comp.c +++ b/src/comp.c @@ -2757,7 +2757,7 @@ declare_function (Lisp_Object func) type[i], format_string ("par_%d", i)); gcc_func = gcc_jit_context_new_function (comp.ctxt, NULL, - GCC_JIT_GLOBAL_EXPORTED, + GCC_JIT_FUNCTION_EXPORTED, comp.lisp_obj_type, c_name, max_args, -- 2.39.5