Call invokes the function f with the specified arguments
(f *Function, args ...*Value)
| 51 | |
| 52 | // Call invokes the function f with the specified arguments |
| 53 | func (b *Builder) Call(f *Function, args ...*Value) *Value { |
| 54 | return b.call(f.llvm, f.Type.Signature, f.Name, args) |
| 55 | } |
| 56 | |
| 57 | // CallIndirect invokes the function pointer f with the specified arguments |
| 58 | func (b *Builder) CallIndirect(f *Value, args ...*Value) *Value { |