From ab4b148b34b55427cf82f4dd67f0773aada301be Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 6 Dec 2018 18:53:57 +0100 Subject: prog: add Prog.Finalize Prog.Finalize combines assignSizesCall, SanitizeCall and validate. Intended for users who build own programs, so that we don't need to expose all individual methods. --- prog/size.go | 4 ---- 1 file changed, 4 deletions(-) (limited to 'prog/size.go') diff --git a/prog/size.go b/prog/size.go index a8f51bdef..c16e7f647 100644 --- a/prog/size.go +++ b/prog/size.go @@ -112,10 +112,6 @@ func (target *Target) assignSizesArray(args []Arg) { } } -func (target *Target) AssignSizesCall(c *Call) { - target.assignSizesCall(c) -} - func (target *Target) assignSizesCall(c *Call) { target.assignSizesArray(c.Args) } -- cgit mrf-deployment