Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(36)

Unified Diff: src/arm/disasm-arm.cc

Issue 2744503003: [simulator] remove unused argument field for stop/breaks. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/arm/disasm-arm.cc
diff --git a/src/arm/disasm-arm.cc b/src/arm/disasm-arm.cc
index 761192f59d795f27c21e8d8982fff100303cf3c1..2cd97a357215c976523e62935cfb876686e5255e 100644
--- a/src/arm/disasm-arm.cc
+++ b/src/arm/disasm-arm.cc
@@ -1364,12 +1364,6 @@ int Decoder::DecodeType7(Instruction* instr) {
if (instr->Bit(24) == 1) {
if (instr->SvcValue() >= kStopCode) {
Format(instr, "stop'cond 'svc");
- 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 {
Format(instr, "svc'cond 'svc");
}

Powered by Google App Engine
This is Rietveld 408576698