aboutsummaryrefslogtreecommitdiffstats
path: root/src/fns.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/fns.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/fns.c')
-rw-r--r--src/fns.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/fns.c b/src/fns.c
index 42e7a715f76..0e220c5ee0b 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -371,14 +371,8 @@ Symbols are also allowed; their print names are used instead. */)
371 return i1 < SCHARS (s2) ? Qt : Qnil; 371 return i1 < SCHARS (s2) ? Qt : Qnil;
372} 372}
373 373
374#if __GNUC__ 374static Lisp_Object concat (int nargs, Lisp_Object *args,
375/* "gcc -O3" enables automatic function inlining, which optimizes out 375 enum Lisp_Type target_type, int last_special);
376 the arguments for the invocations of this function, whereas it
377 expects these values on the stack. */
378static Lisp_Object concat (int nargs, Lisp_Object *args, enum Lisp_Type target_type, int last_special) __attribute__((noinline));
379#else /* !__GNUC__ */
380static Lisp_Object concat (int nargs, Lisp_Object *args, enum Lisp_Type target_type, int last_special);
381#endif
382 376
383/* ARGSUSED */ 377/* ARGSUSED */
384Lisp_Object 378Lisp_Object