aboutsummaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
authorAndreas Schwab2010-07-11 10:38:22 +0200
committerAndreas Schwab2010-07-11 10:38:22 +0200
commita64df65010c90f1f4bad5a5076c8fbcba61ba6d8 (patch)
treeb7fff3c3f91442b0d557d7c2b4a232cad3bec804 /src/eval.c
parent3277c1ee3a17ed3102aad149e6ba7341d3e579b5 (diff)
downloademacs-a64df65010c90f1f4bad5a5076c8fbcba61ba6d8.tar.gz
emacs-a64df65010c90f1f4bad5a5076c8fbcba61ba6d8.zip
Remove obsolete noinline declaration
* eval.c (apply1, call2): Don't declare noinline. * fns.c (concat): Likewise.
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/eval.c b/src/eval.c
index 140ba85d789..7f686c045fb 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -172,14 +172,6 @@ extern Lisp_Object Qfunction;
172 172
173static Lisp_Object funcall_lambda (Lisp_Object, int, Lisp_Object*); 173static Lisp_Object funcall_lambda (Lisp_Object, int, Lisp_Object*);
174static void unwind_to_catch (struct catchtag *, Lisp_Object) NO_RETURN; 174static void unwind_to_catch (struct catchtag *, Lisp_Object) NO_RETURN;
175
176#if __GNUC__
177/* "gcc -O3" enables automatic function inlining, which optimizes out
178 the arguments for the invocations of these functions, whereas they
179 expect these values on the stack. */
180Lisp_Object apply1 (Lisp_Object fn, Lisp_Object arg) __attribute__((noinline));
181Lisp_Object call2 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2) __attribute__((noinline));
182#endif
183 175
184void 176void
185init_eval_once (void) 177init_eval_once (void)