Lambda-lifting a block-structured program transforms it into a set ofrecursive equations. We present the symmetric transformation: lambda-dropping. Lambda-dropping a set of recursive equations restores block structure and lexical scope.For lack of block structure and lexical scope, recursive equations mustcarry around all the parameters that any of their callees might possiblyneed. Both lambda-lifting and lambda-dropping thus require one to compute Def/Use paths:- for lambda-lifting: each of the functions occurring in the path of afree variable is passed this variable as a parameter;- for lambda-dropping: parameters which are used in the same scopeas their definition do not need to be passed along in their path.A program whose blocks have n...