[Python-checkins] python/dist/src/Python ceval.c,2.355,2.356

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Sun, 16 Mar 2003 07:41:17 -0800


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

Modified Files:
	ceval.c 
Log Message:
Fix comment and whitespace.

Index: ceval.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/ceval.c,v
retrieving revision 2.355
retrieving revision 2.356
diff -C2 -d -r2.355 -r2.356
*** ceval.c	16 Mar 2003 03:11:04 -0000	2.355
--- ceval.c	16 Mar 2003 15:41:11 -0000	2.356
***************
*** 610,614 ****
  
  	Verifying the prediction costs a single high-speed test of register
! 	variable against a constant.  If the pairing was good, then the odds
  	processor has a high likelihood of making its own successful branch
  	prediction which results in a nearly zero overhead transition to the
--- 610,614 ----
  
  	Verifying the prediction costs a single high-speed test of register
! 	variable against a constant.  If the pairing was good, then the
  	processor has a high likelihood of making its own successful branch
  	prediction which results in a nearly zero overhead transition to the
***************
*** 619,625 ****
  */
  
! #define PREDICT(op)	if (*next_instr == op) goto PRED_##op
  #define PREDICTED(op)		PRED_##op: next_instr++
! #define PREDICTED_WITH_ARG(op)	PRED_##op: oparg = (next_instr += 3, (next_instr[-1]<<8) + next_instr[-2])
  
  /* Stack manipulation macros */
--- 619,626 ----
  */
  
! #define PREDICT(op)		if (*next_instr == op) goto PRED_##op
  #define PREDICTED(op)		PRED_##op: next_instr++
! #define PREDICTED_WITH_ARG(op)	PRED_##op: oparg = (next_instr += 3, \
! 				(next_instr[-1]<<8) + next_instr[-2])
  
  /* Stack manipulation macros */