mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-10 05:50:26 +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:
parent
d2b7b761e5
commit
52272fc764
2 changed files with 2 additions and 1 deletions
1
THANKS
1
THANKS
|
@ -56,6 +56,7 @@ For fixes or providing information which led to a fix:
|
||||||
Sven Hartrumpf
|
Sven Hartrumpf
|
||||||
Eric Hanchrow
|
Eric Hanchrow
|
||||||
Judy Hawkins
|
Judy Hawkins
|
||||||
|
Jon Herron
|
||||||
Sam Hocevar
|
Sam Hocevar
|
||||||
Patrick Horgan
|
Patrick Horgan
|
||||||
Ales Hvezda
|
Ales Hvezda
|
||||||
|
|
|
@ -123,7 +123,7 @@
|
||||||
(make-struct . make-struct)
|
(make-struct . make-struct)
|
||||||
|
|
||||||
;; hack for javascript
|
;; hack for javascript
|
||||||
((return . 1) return)
|
((return . 1) . return)
|
||||||
|
|
||||||
((bytevector-u8-ref . 2) . bv-u8-ref)
|
((bytevector-u8-ref . 2) . bv-u8-ref)
|
||||||
((bytevector-u8-set! . 3) . bv-u8-set)
|
((bytevector-u8-set! . 3) . bv-u8-set)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue