refine the comment and add a todo

This commit is contained in:
xieyuschen 2024-09-10 21:22:16 +08:00
Родитель 13633d0cd6
Коммит c962476661
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 874E18CA289EACD5
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -186,7 +186,8 @@ func targetedBlock(f *Function, tok token.Token) *BasicBlock {
return targetedBlock(f.parent, tok)
}
// instrs returns a next function that returns each reachable instruction of the SSA function.
// instrs returns an iterator that returns each reachable instruction of the SSA function.
// TODO: return an iter.Seq once x/tools is on 1.23
func (f *Function) instrs() func(yield func(i Instruction) bool) {
return func(yield func(i Instruction) bool) {
for _, block := range f.Blocks {