[Python-checkins] python/dist/src/Python newcompile.c,1.1.2.10,1.1.2.11

jhylton@users.sourceforge.net jhylton@users.sourceforge.net
Mon, 30 Sep 2002 15:12:07 -0700


Update of /cvsroot/python/python/dist/src/Python
In directory usw-pr-cvs1:/tmp/cvs-serv14716

Modified Files:
      Tag: ast-branch
	newcompile.c 
Log Message:
Get rid of spurious NEXT_BLOCK() in compiler_if().


Index: newcompile.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/Attic/newcompile.c,v
retrieving revision 1.1.2.10
retrieving revision 1.1.2.11
diff -C2 -d -r1.1.2.10 -r1.1.2.11
*** newcompile.c	30 Sep 2002 22:07:43 -0000	1.1.2.10
--- newcompile.c	30 Sep 2002 22:12:05 -0000	1.1.2.11
***************
*** 589,593 ****
  		VISIT(c, expr, s->v.If.test);
  		ADDOP_JREL(c, JUMP_IF_FALSE, next);
- 		NEXT_BLOCK(c);
  		ADDOP(c, POP_TOP);
  		VISIT_SEQ(c, stmt, s->v.If.body);
--- 589,592 ----