1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

fix bad call to make-glil-src

* module/language/tree-il/compile-glil.scm (flatten-lambda): Fix bad call
  to make-glil-src, unfortunately not hit during production because
  psyntax doesn't yet understand source locations.
This commit is contained in:
Andy Wingo 2009-05-22 12:48:45 +02:00
parent 7902c54713
commit e6b9443179

View file

@ -129,7 +129,7 @@
;; write bindings and source debugging info
(emit-bindings #f ids vars allocation emit-code)
(if (lambda-src x)
(emit-code (make-glil-src (lambda-src x))))
(emit-code (make-glil-source (lambda-src x))))
;; copy args to the heap if necessary
(let lp ((in vars) (n 0))