diff options
author | Andrea Corallo <akrl@sdf.org> | 2019-11-24 23:22:49 +0100 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2020-01-01 11:38:10 +0100 |
commit | 6a3624eecbc0a116b293d05e044b8b40a86022e9 (patch) | |
tree | 9d8c2f036e23c73039a6300bab68384169ae5591 /src/comp.c | |
parent | 44023f3db21c0365ceeb179657447d7cdb1feb8f (diff) | |
download | emacs-6a3624eecbc0a116b293d05e044b8b40a86022e9.tar.gz emacs-6a3624eecbc0a116b293d05e044b8b40a86022e9.tar.bz2 emacs-6a3624eecbc0a116b293d05e044b8b40a86022e9.zip |
fix wrong enum usage into declare_function
Diffstat (limited to 'src/comp.c')
-rw-r--r-- | src/comp.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, |