Description6l, 8l: avoid recursion in asmandsz
The old code said
if(x) {
handle a
return
}
aa = *a
rewrite aa to make x true
recursivecall(&aa)
The new code says
params = copy out of a
if(!x) {
rewrite params to make x true
}
handle params
but it's hard to see that in the Rietveld diffs because
it gets confused by changes in indentation.
Avoiding the recursion makes other changes easier.
Patch Set 1 #Patch Set 2 : code review 2533041: 6l, 8l: avoid recursion in asmandsz #Patch Set 3 : code review 2533041: 6l, 8l: avoid recursion in asmandsz #
MessagesTotal messages: 3
|