aboutsummaryrefslogtreecommitdiffstats
path: root/src/comp.c
diff options
context:
space:
mode:
authorAndrea Corallo2021-02-14 20:19:28 +0100
committerAndrea Corallo2021-02-14 20:19:28 +0100
commit71fc39cbe009fefcb992d8333806a743a3b97243 (patch)
treea425d8d6e05cca2aa4d664bdd2f011ecbf7cbc08 /src/comp.c
parentbebec46bcbf0e52460b08234c067d7a2cb0f2246 (diff)
downloademacs-71fc39cbe009fefcb992d8333806a743a3b97243.tar.gz
emacs-71fc39cbe009fefcb992d8333806a743a3b97243.zip
Revert "* src/comp.c (define_jmp_buf): Use 'jmp_buf' instead of 'sys_jmp_buf'."
This reverts commit bebec46bcbf0e52460b08234c067d7a2cb0f2246. Looking at the git history I realize now the use of 'sys_jmp_buf' was intentional.
Diffstat (limited to 'src/comp.c')
-rw-r--r--src/comp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp.c b/src/comp.c
index 737e8080201..df770c650e6 100644
--- a/src/comp.c
+++ b/src/comp.c
@@ -2937,7 +2937,7 @@ define_jmp_buf (void)
2937 gcc_jit_context_new_array_type (comp.ctxt, 2937 gcc_jit_context_new_array_type (comp.ctxt,
2938 NULL, 2938 NULL,
2939 comp.char_type, 2939 comp.char_type,
2940 sizeof (jmp_buf)), 2940 sizeof (sys_jmp_buf)),
2941 "stuff"); 2941 "stuff");
2942 comp.jmp_buf_s = 2942 comp.jmp_buf_s =
2943 gcc_jit_context_new_struct_type (comp.ctxt, 2943 gcc_jit_context_new_struct_type (comp.ctxt,