[Python-checkins] python/dist/src/Include compile.h,2.37.2.3,2.37.2.4

jhylton@users.sourceforge.net jhylton@users.sourceforge.net
Mon, 21 Oct 2002 14:26:23 -0700


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

Modified Files:
      Tag: ast-branch
	compile.h 
Log Message:
Make b_seen and b_return bitfields.



Index: compile.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/compile.h,v
retrieving revision 2.37.2.3
retrieving revision 2.37.2.4
diff -C2 -d -r2.37.2.3 -r2.37.2.4
*** compile.h	30 Sep 2002 20:16:33 -0000	2.37.2.3
--- compile.h	21 Oct 2002 21:26:20 -0000	2.37.2.4
***************
*** 47,51 ****
  	int b_next;
  	/* b_seen is used to perform a DFS of basicblocks. */
! 	int b_seen;
  	struct instr b_instr[DEFAULT_BLOCK_SIZE];
  };
--- 47,53 ----
  	int b_next;
  	/* b_seen is used to perform a DFS of basicblocks. */
! 	int b_seen : 1;
! 	/* b_return is true if a RETURN_VALUE opcode is inserted. */
! 	int b_return : 1;
  	struct instr b_instr[DEFAULT_BLOCK_SIZE];
  };