Skip to content
Snippets Groups Projects
Commit a366c909 authored by pfdietz's avatar pfdietz
Browse files

Added test for gcl (seg fault in notinlined funcall.

parent 66fbdb3d
No related branches found
No related tags found
No related merge requests found
...@@ -2084,3 +2084,17 @@ ...@@ -2084,3 +2084,17 @@
(multiple-value-call #'%f9 (values v2 v2)))) (multiple-value-call #'%f9 (values v2 v2))))
100))))) 100)))))
100) 100)
;;; gcl (9 Nov 2003) bug
;;; Error in FUNCALL [or a callee]: Caught fatal error [memory may be damaged]
(deftest misc.160
(funcall
(compile nil
'(lambda (c)
(declare (notinline + funcall))
(+ (labels ((%f1 () -14)) (funcall #'%f1))
(flet ((%f2 () (floor c))) (funcall #'%f2)))))
0)
-14)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment