diff options
author | Andrea Corallo <akrl@sdf.org> | 2019-09-30 04:43:01 +0200 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2020-01-01 11:37:55 +0100 |
commit | 9ff098615f92cf9fe4aa0f1c6835dbf9198daa6c (patch) | |
tree | a52fd89843d6ae5612650d0bbbc6945f6bdcb567 /src/comp.c | |
parent | d19bb4861553fe82b86ef09db6cb6b1fe1eae829 (diff) | |
download | emacs-9ff098615f92cf9fe4aa0f1c6835dbf9198daa6c.tar.gz emacs-9ff098615f92cf9fe4aa0f1c6835dbf9198daa6c.tar.bz2 emacs-9ff098615f92cf9fe4aa0f1c6835dbf9198daa6c.zip |
remove INLINE hints from comp.c
Diffstat (limited to 'src/comp.c')
-rw-r--r-- | src/comp.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/comp.c b/src/comp.c index 2ab9d034ebf..039daeeaadc 100644 --- a/src/comp.c +++ b/src/comp.c @@ -230,7 +230,7 @@ bcall0 (Lisp_Object f) Ffuncall (1, &f); } -INLINE static gcc_jit_field * +static gcc_jit_field * type_to_cast_field (gcc_jit_type *type) { gcc_jit_field *field; @@ -419,7 +419,7 @@ emit_call_ref (Lisp_Object subr_sym, unsigned nargs, /* Close current basic block emitting a conditional. */ -INLINE static void +static void emit_cond_jump (gcc_jit_rvalue *test, gcc_jit_block *then_target, gcc_jit_block *else_target) { @@ -506,7 +506,7 @@ emit_ptr_arithmetic (gcc_jit_rvalue *ptr, gcc_jit_type *ptr_type, offset)); } -INLINE static gcc_jit_rvalue * +static gcc_jit_rvalue * emit_XLI (gcc_jit_rvalue *obj) { emit_comment ("XLI"); @@ -516,7 +516,7 @@ emit_XLI (gcc_jit_rvalue *obj) comp.lisp_obj_as_num); } -INLINE static gcc_jit_lvalue * +static gcc_jit_lvalue * emit_lval_XLI (gcc_jit_lvalue *obj) { emit_comment ("lval_XLI"); @@ -526,7 +526,7 @@ emit_lval_XLI (gcc_jit_lvalue *obj) comp.lisp_obj_as_num); } -INLINE static gcc_jit_rvalue * +static gcc_jit_rvalue * emit_XLP (gcc_jit_rvalue *obj) { emit_comment ("XLP"); @@ -536,7 +536,7 @@ emit_XLP (gcc_jit_rvalue *obj) comp.lisp_obj_as_ptr); } -INLINE static gcc_jit_lvalue * +static gcc_jit_lvalue * emit_lval_XLP (gcc_jit_lvalue *obj) { emit_comment ("lval_XLP"); |