This commit is contained in:
		
							
								
								
									
										10
									
								
								engine/vm.c
									
									
									
									
									
								
							
							
						
						
									
										10
									
								
								engine/vm.c
									
									
									
									
									
								
							@@ -1829,9 +1829,9 @@ static sxi32 VmByteCodeDump(
 | 
			
		||||
	void *pUserData         /* Last argument to xConsumer() */
 | 
			
		||||
) {
 | 
			
		||||
	static const char zDump[] = {
 | 
			
		||||
		"===============================================================================================\n"
 | 
			
		||||
		"   SEQ   | INSTRUCTION |    P1    |    P2    |     P3     |  LINE  |        SOURCE FILE        \n"
 | 
			
		||||
		"===============================================================================================\n"
 | 
			
		||||
		"======================================================================================================\n"
 | 
			
		||||
		"   SEQ   |  OP  | INSTRUCTION |    P1    |    P2    |     P3     |  LINE  |        SOURCE FILE        \n"
 | 
			
		||||
		"======================================================================================================\n"
 | 
			
		||||
	};
 | 
			
		||||
	VmInstr *pInstr, *pEnd;
 | 
			
		||||
	sxi32 rc = SXRET_OK;
 | 
			
		||||
@@ -1848,8 +1848,8 @@ static sxi32 VmByteCodeDump(
 | 
			
		||||
			break;
 | 
			
		||||
		}
 | 
			
		||||
		/* Format and call the consumer callback */
 | 
			
		||||
		rc = SyProcFormat(xConsumer, pUserData, " #%06u | %-10s | %8d | %8u | %#10x | %6u | %z\n",
 | 
			
		||||
						  n, VmInstrToString(pInstr->iOp), pInstr->iP1, pInstr->iP2,
 | 
			
		||||
		rc = SyProcFormat(xConsumer, pUserData, " #%06u | %4d | %-10s | %8d | %8u | %#10x | %6u | %z\n",
 | 
			
		||||
						  n, pInstr->iOp, VmInstrToString(pInstr->iOp), pInstr->iP1, pInstr->iP2,
 | 
			
		||||
						  SX_PTR_TO_INT(pInstr->p3), pInstr->iLine, pInstr->pFile);
 | 
			
		||||
		if(rc != SXRET_OK) {
 | 
			
		||||
			/* Consumer routine request an operation abort */
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user