mirror of
				https://github.com/python/cpython.git
				synced 2025-11-03 19:34:08 +00:00 
			
		
		
		
	Initialized opcode and oparg to silence a gcc -Wall warning.
This commit is contained in:
		
							parent
							
								
									1b024d37a7
								
							
						
					
					
						commit
						aa39a7edf7
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -315,8 +315,8 @@ eval_code2(PyCodeObject *co, PyObject *globals, PyObject *locals,
 | 
			
		|||
	int lastopcode = 0;
 | 
			
		||||
#endif
 | 
			
		||||
	register unsigned char *next_instr;
 | 
			
		||||
	register int opcode;	/* Current opcode */
 | 
			
		||||
	register int oparg;	/* Current opcode argument, if any */
 | 
			
		||||
	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 */
 | 
			
		||||
	register int err;	/* Error status -- nonzero if error */
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue