Example #1
0
func (b *builder) newLocal(t types.T, name string) ir.Ref {
	return b.f.NewLocal(t.Size(), name, types.IsByte(t))
}
Example #2
0
func (b *builder) newTemp(t types.T) *ref {
	return newRef(t, b.f.NewTemp(t.Size(), types.IsByte(t)))
}