summaryrefslogtreecommitdiff
path: root/src/eval.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/eval.c b/src/eval.c
index 32cfda24d8c..a51d0c90831 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -2820,11 +2820,8 @@ Thus, (funcall \\='cons \\='x \\='y) returns (x . y).
usage: (funcall FUNCTION &rest ARGUMENTS) */)
(ptrdiff_t nargs, Lisp_Object *args)
{
- /* Use 'volatile' here to cause optimizing compilers to keep a
- reference on the stack to the function's bytecode object. See
- Bug#33014. */
- Lisp_Object volatile fun;
- Lisp_Object original_fun, funcar;
+ Lisp_Object fun, original_fun;
+ Lisp_Object funcar;
ptrdiff_t numargs = nargs - 1;
Lisp_Object val;
ptrdiff_t count;