From a64df65010c90f1f4bad5a5076c8fbcba61ba6d8 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Sun, 11 Jul 2010 10:38:22 +0200 Subject: Remove obsolete noinline declaration * eval.c (apply1, call2): Don't declare noinline. * fns.c (concat): Likewise. --- src/eval.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/eval.c') 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; static Lisp_Object funcall_lambda (Lisp_Object, int, Lisp_Object*); static void unwind_to_catch (struct catchtag *, Lisp_Object) NO_RETURN; - -#if __GNUC__ -/* "gcc -O3" enables automatic function inlining, which optimizes out - the arguments for the invocations of these functions, whereas they - expect these values on the stack. */ -Lisp_Object apply1 (Lisp_Object fn, Lisp_Object arg) __attribute__((noinline)); -Lisp_Object call2 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2) __attribute__((noinline)); -#endif void init_eval_once (void) -- cgit v1.2.1