(step *Step, instr *ssa.Function)
| 6 | ) |
| 7 | |
| 8 | func (f *Function) executeFunction(step *Step, instr *ssa.Function) { |
| 9 | if step.Register == -1 { |
| 10 | return |
| 11 | } |
| 12 | |
| 13 | f.Assembler.Append(&asm.MoveLabel{ |
| 14 | Destination: step.Register, |
| 15 | Label: instr.String(), |
| 16 | }) |
| 17 | } |