[Python-checkins] CVS: python/dist/src/Python ceval.c,2.187,2.188

Moshe Zadka python-dev@python.org
Sun, 6 Aug 2000 23:34:49 -0700


Update of /cvsroot/python/python/dist/src/Python
In directory slayer.i.sourceforge.net:/tmp/cvs-serv30715/Python

Modified Files:
	ceval.c 
Log Message:
Initialized opcode and oparg to silence a gcc -Wall warning.


Index: ceval.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/ceval.c,v
retrieving revision 2.187
retrieving revision 2.188
diff -C2 -r2.187 -r2.188
*** ceval.c	2000/07/25 12:56:38	2.187
--- ceval.c	2000/08/07 06:34:45	2.188
***************
*** 316,321 ****
  #endif
  	register unsigned char *next_instr;
! 	register int opcode;	/* Current opcode */
! 	register int oparg;	/* Current opcode argument, if any */
  	register PyObject **stack_pointer;
  	register enum why_code why; /* Reason for block stack unwind */
--- 316,321 ----
  #endif
  	register unsigned char *next_instr;
! 	register int opcode=0;	/* Current opcode */
! 	register int oparg=0;	/* Current opcode argument, if any */
  	register PyObject **stack_pointer;
  	register enum why_code why; /* Reason for block stack unwind */