aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrea Corallo2019-09-21 10:36:53 +0200
committerAndrea Corallo2020-01-01 11:37:51 +0100
commit2fb2862facf3eb70897a2e5ba342971ce696bc5d (patch)
treebd24c0f215a1cb697a1b45ef21f14066473f6025 /src
parentbbf8b1df90f327a74423b2ccbfe557da9b04dd9d (diff)
downloademacs-2fb2862facf3eb70897a2e5ba342971ce696bc5d.tar.gz
emacs-2fb2862facf3eb70897a2e5ba342971ce696bc5d.zip
cleanup unnecessary code and allow inlining at speed 3
Diffstat (limited to 'src')
-rw-r--r--src/comp.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/comp.c b/src/comp.c
index 89eead5c6c4..e0c332c89e4 100644
--- a/src/comp.c
+++ b/src/comp.c
@@ -2820,9 +2820,6 @@ DEFUN ("comp--init-ctxt", Fcomp__init_ctxt, Scomp__init_ctxt,
2820 2820
2821 } 2821 }
2822 2822
2823 /* Do not inline within a compilation unit. */
2824 gcc_jit_context_add_command_line_option (comp.ctxt, "-fno-inline");
2825
2826 comp.void_type = gcc_jit_context_get_type (comp.ctxt, GCC_JIT_TYPE_VOID); 2823 comp.void_type = gcc_jit_context_get_type (comp.ctxt, GCC_JIT_TYPE_VOID);
2827 comp.void_ptr_type = 2824 comp.void_ptr_type =
2828 gcc_jit_context_get_type (comp.ctxt, GCC_JIT_TYPE_VOID_PTR); 2825 gcc_jit_context_get_type (comp.ctxt, GCC_JIT_TYPE_VOID_PTR);