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

fix bug in compile-glil.scm for return opcode-hack

* module/language/tree-il/compile-glil.scm (*primcall-ops*): Fix entry
  for `return'. Thanks to Jon Herron for the report.
This commit is contained in:
Andy Wingo 2010-04-27 23:04:39 +02:00
parent d2b7b761e5
commit 52272fc764
2 changed files with 2 additions and 1 deletions

1
THANKS
View file

@ -56,6 +56,7 @@ For fixes or providing information which led to a fix:
Sven Hartrumpf
Eric Hanchrow
Judy Hawkins
Jon Herron
Sam Hocevar
Patrick Horgan
Ales Hvezda

View file

@ -123,7 +123,7 @@
(make-struct . make-struct)
;; hack for javascript
((return . 1) return)
((return . 1) . return)
((bytevector-u8-ref . 2) . bv-u8-ref)
((bytevector-u8-set! . 3) . bv-u8-set)