Index: src/objects.cc |
diff --git a/src/objects.cc b/src/objects.cc |
index f73d33f2a8edffb2e338bd956df8507e8dde9b34..e123bc208676b7dd2fce0cca130343b63697697d 100644 |
--- a/src/objects.cc |
+++ b/src/objects.cc |
@@ -10937,13 +10937,6 @@ void Code::Disassemble(const char* name, OStream& os) { // NOLINT |
} else { |
os << "<none>"; |
} |
- if (entry.deoptimization_pc() != Safepoint::kNoDeoptimizationPc) { |
- Vector<char> buf2 = Vector<char>::New(30); |
- SNPrintF(buf2, "%6d", entry.deoptimization_pc()); |
- os << buf2.start(); |
- } else { |
- os << "<none>"; |
- } |
if (entry.argument_count() > 0) { |
os << " argc: " << entry.argument_count(); |
} |