Index: src/mips64/simulator-mips64.cc |
diff --git a/src/mips64/simulator-mips64.cc b/src/mips64/simulator-mips64.cc |
index ed484ef2fbf0e2b764e840b5283d698c071fc5a6..0532523ecb008168a54cf6cd78c085dffbf6a709 100644 |
--- a/src/mips64/simulator-mips64.cc |
+++ b/src/mips64/simulator-mips64.cc |
@@ -152,14 +152,7 @@ static void InitializeCoverage() {} |
void MipsDebugger::Stop(Instruction* instr) { |
// Get the stop code. |
uint32_t code = instr->Bits(25, 6); |
- // Retrieve the encoded address, which comes just after this stop. |
- char* msg = *reinterpret_cast<char**>(sim_->get_pc() + |
- Instruction::kInstrSize); |
- // Update this stop description. |
- if (!sim_->watched_stops_[code].desc) { |
- sim_->watched_stops_[code].desc = msg; |
- } |
- PrintF("Simulator hit %s (%u)\n", msg, code); |
+ PrintF("Simulator hit (%u)\n", code); |
// TODO(yuyin): 2 -> 3? |
sim_->set_pc(sim_->get_pc() + 3 * Instruction::kInstrSize); |
Debug(); |