(step *Step, instr *ssa.Call)
| 6 | ) |
| 7 | |
| 8 | func (f *Function) executeCall(step *Step, instr *ssa.Call) { |
| 9 | f.moveValuesToRegisters(instr.Arguments, f.CPU.Call.In, step.Live) |
| 10 | |
| 11 | f.Assembler.Append(&asm.Call{ |
| 12 | Label: instr.Func.String(), |
| 13 | }) |
| 14 | |
| 15 | f.moveCallResult(step, f.CPU.Call.Out[0]) |
| 16 | } |
no test coverage detected