wingo pushed a commit to branch wip-2.1.2
in repository guile.
commit c984432f60cf41f6b2e9fa3569000c15d8193526
Author: Andy Wingo <[email protected]>
Date: Wed Oct 28 13:11:20 2015 +0000
Remove use of return in disassembler.scm
* module/system/vm/disassembler.scm (instruction-has-fallthrough?):
Remove return from static opcode set.
---
module/system/vm/disassembler.scm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/module/system/vm/disassembler.scm
b/module/system/vm/disassembler.scm
index 5e8b020..f718a4c 100644
--- a/module/system/vm/disassembler.scm
+++ b/module/system/vm/disassembler.scm
@@ -514,7 +514,7 @@ address of that offset."
(define non-fallthrough-set
(static-opcode-set halt
tail-call tail-call-label tail-call/shuffle
- return return-values
+ return-values
subr-call foreign-call continuation-call
tail-apply
br))