(step *Step, instr *ssa.Bytes)
| 6 | ) |
| 7 | |
| 8 | func (f *Function) executeBytes(step *Step, instr *ssa.Bytes) { |
| 9 | destination := step.Register |
| 10 | |
| 11 | if destination == -1 { |
| 12 | return |
| 13 | } |
| 14 | |
| 15 | f.Count.Data++ |
| 16 | label := f.CreateLabel("data", f.Count.Data) |
| 17 | f.Assembler.Data.SetImmutable(label, instr.Bytes) |
| 18 | isSpilled := f.isSpilled(destination) |
| 19 | |
| 20 | if isSpilled { |
no test coverage detected