SF bug 1442442: LIST_APPEND optimization got lost in the AST merge.

Add it back.
This commit is contained in:
Neal Norwitz 2006-03-03 20:29:11 +00:00
parent d4e3035701
commit 10be2ea85d
3 changed files with 22 additions and 22 deletions

View file

@ -744,6 +744,7 @@ class StackDepthTracker:
effect = {
'POP_TOP': -1,
'DUP_TOP': 1,
'LIST_APPEND': -2,
'SLICE+1': -1,
'SLICE+2': -1,
'SLICE+3': -2,