Skip to content
Snippets Groups Projects
Commit eca110a0 authored by emarsden's avatar emarsden
Browse files

Change the names of lambda-nodes in IR1 for PCL-generated lambdas to

something of the form (pcl::method name specializers...), instead of
(:method name specializers).
parent a7cf6186
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1tran.lisp,v 1.153 2003/05/14 12:03:15 emarsden Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1tran.lisp,v 1.154 2003/05/21 16:34:34 emarsden Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -2048,7 +2048,7 @@
(let ((decl (find 'pcl::method-name decls :key 'caadr)))
(and decl
(eq 'declare (first decl))
(cons :method (cadadr decl))))))
(cons 'pcl::method (cadadr decl))))))
res))))
(declaim (end-block))
......
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