| Index: src/arm/disasm-arm.cc
|
| diff --git a/src/arm/disasm-arm.cc b/src/arm/disasm-arm.cc
|
| index 1bb33fa0e82d347653b3ccc45f40c7a8868b4248..1e1c75d8b84800449bfeba6e11168b2d4af90d9b 100644
|
| --- a/src/arm/disasm-arm.cc
|
| +++ b/src/arm/disasm-arm.cc
|
| @@ -1364,16 +1364,10 @@ int Decoder::DecodeType7(Instruction* instr) {
|
| if (instr->Bit(24) == 1) {
|
| if (instr->SvcValue() >= kStopCode) {
|
| Format(instr, "stop'cond 'svc");
|
| - // Also print the stop message. Its address is encoded
|
| - // in the following 4 bytes.
|
| - out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_,
|
| - "\n %p %08x stop message: %s",
|
| - reinterpret_cast<void*>(instr
|
| - + Instruction::kInstrSize),
|
| - *reinterpret_cast<uint32_t*>(instr
|
| - + Instruction::kInstrSize),
|
| - *reinterpret_cast<char**>(instr
|
| - + Instruction::kInstrSize));
|
| + out_buffer_pos_ += SNPrintF(
|
| + out_buffer_ + out_buffer_pos_, "\n %p %08x",
|
| + reinterpret_cast<void*>(instr + Instruction::kInstrSize),
|
| + *reinterpret_cast<uint32_t*>(instr + Instruction::kInstrSize));
|
| // We have decoded 2 * Instruction::kInstrSize bytes.
|
| return 2 * Instruction::kInstrSize;
|
| } else {
|
|
|