Skip to content

Commit

Permalink
fix a compiler bug with dead code optimization (#284)
Browse files Browse the repository at this point in the history
  • Loading branch information
d5 committed May 19, 2020
1 parent 5b449b3 commit 50d0ba7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions compiler.go
Expand Up @@ -1192,6 +1192,7 @@ func (c *Compiler) optimizeFunc(node parser.Node) {
var lastOp parser.Opcode
var appendReturn bool
endPos := len(c.scopes[c.scopeIndex].Instructions)
newEndPost := len(newInsts)
iterateInstructions(newInsts,
func(pos int, opcode parser.Opcode, operands []int) bool {
switch opcode {
Expand All @@ -1204,6 +1205,8 @@ func (c *Compiler) optimizeFunc(node parser.Node) {
} else if endPos == operands[0] {
// there's a jump instruction that jumps to the end of
// function compiler should append "return".
copy(newInsts[pos:],
MakeInstruction(opcode, newEndPost))
appendReturn = true
} else {
panic(fmt.Errorf("invalid jump position: %d", newDst))
Expand Down

0 comments on commit 50d0ba7

Please sign in to comment.