diff --git a/src/base/SMPInstr.cpp b/src/base/SMPInstr.cpp
index b9dca371eaab27ed44a6016518716fab417989f9..fd261421beab1bed5ca99180a3f45fa61a3cbdbc 100644
--- a/src/base/SMPInstr.cpp
+++ b/src/base/SMPInstr.cpp
@@ -2066,6 +2066,9 @@ void SMPInstr::Dump(void) {
 #if SMP_VERBOSE_DUMP
 	this->PrintOperands();
 #endif
+	SMP_msg("\n");
+	SMP_msg("DEFMemOp: "); PrintOperand(this->DEFMemOp); SMP_msg("\n");
+	SMP_msg("USEMemOp: "); PrintOperand(this->USEMemOp); SMP_msg("\n");
 	SMP_msg("\n");
 	return;
 } // end of SMPInstr::Dump()
@@ -4688,9 +4691,10 @@ bool SMPInstr::MDNormalizeStackOps(bool UseFP, STARS_sval_t FPDelta, bool Recomp
 						}
 						else {
 							SMP_msg("\nFATAL ERROR in MDNormalizeStackOps: Stack operand is not the USEMemOp. Inst dump follows.\n");
+							SMP_msg("Recomputing: %d  DeltaIncrement: %d\n", Recomputing, DeltaIncrement);
 							SMP_msg("Stack Op: ");
 							PrintOperand(OldOp);
-							SMP_msg("   USEMemOp: ");
+							SMP_msg("\nUSEMemOp: ");
 							PrintOperand(this->USEMemOp);
 							SMP_msg(" \n");
 							this->Dump();