cl: call intf.method

This commit is contained in:
xushiwei
2024-05-27 11:18:43 +08:00
parent df13e3ab82
commit 877b397e04
5 changed files with 219 additions and 6 deletions

View File

@@ -562,7 +562,7 @@ func (p *context) compileInstrOrValue(b llssa.Builder, iv instrOrValue, asValue
o := p.compileValue(b, cv)
fn := b.Imethod(o, v.Call.Method)
args := p.compileValues(b, v.Call.Args, fnNormal)
b.Call(fn, args...)
ret = b.Call(fn, args...)
break
}
kind := p.funcKind(cv)