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

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Mon, 24 Mar 2003 15:44:22 -0800


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

Modified Files:
      Tag: ast-branch
	compile.h 
Log Message:
Redeclared stuff to stop wngs about signed-vs-unsigned mismatches.


Index: compile.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/compile.h,v
retrieving revision 2.37.2.4
retrieving revision 2.37.2.5
diff -C2 -d -r2.37.2.4 -r2.37.2.5
*** compile.h	21 Oct 2002 21:26:20 -0000	2.37.2.4
--- compile.h	24 Mar 2003 23:44:18 -0000	2.37.2.5
***************
*** 39,44 ****
  
  struct basicblock {
! 	size_t b_iused;
! 	size_t b_ialloc;
  	/* If b_next is non-zero, it is the block id of the next
  	   block reached by normal control flow.
--- 39,44 ----
  
  struct basicblock {
! 	int b_iused;
! 	int b_ialloc;
  	/* If b_next is non-zero, it is the block id of the next
  	   block reached by normal control flow.