mirror of
				https://github.com/python/cpython.git
				synced 2025-11-03 23:21:29 +00:00 
			
		
		
		
	gh-109094: replace frame->prev_instr by frame->instr_ptr (#109095)
This commit is contained in:
		
							parent
							
								
									573eff3e2e
								
							
						
					
					
						commit
						67a91f78e4
					
				
					 23 changed files with 249 additions and 164 deletions
				
			
		| 
						 | 
				
			
			@ -58,7 +58,7 @@ extern PyTypeObject _PyExc_MemoryError;
 | 
			
		|||
            .interpreter_frame = { \
 | 
			
		||||
                .previous = offsetof(_PyInterpreterFrame, previous), \
 | 
			
		||||
                .executable = offsetof(_PyInterpreterFrame, f_executable), \
 | 
			
		||||
                .prev_instr = offsetof(_PyInterpreterFrame, prev_instr), \
 | 
			
		||||
                .instr_ptr = offsetof(_PyInterpreterFrame, instr_ptr), \
 | 
			
		||||
                .localsplus = offsetof(_PyInterpreterFrame, localsplus), \
 | 
			
		||||
                .owner = offsetof(_PyInterpreterFrame, owner), \
 | 
			
		||||
            }, \
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue