| Index: src/crankshaft/hydrogen-instructions.cc
|
| diff --git a/src/crankshaft/hydrogen-instructions.cc b/src/crankshaft/hydrogen-instructions.cc
|
| index 9cd15026db24d3ff07117ec1e006d91110850e4f..620d5b389def336f6026fed475fe28a6f47f0c26 100644
|
| --- a/src/crankshaft/hydrogen-instructions.cc
|
| +++ b/src/crankshaft/hydrogen-instructions.cc
|
| @@ -911,18 +911,6 @@
|
| << argument_count();
|
| }
|
|
|
| -std::ostream& HInvokeFunction::PrintTo(std::ostream& os) const { // NOLINT
|
| - if (tail_call_mode() == TailCallMode::kAllow) os << "Tail";
|
| - return HBinaryCall::PrintTo(os);
|
| -}
|
| -
|
| -std::ostream& HInvokeFunction::PrintDataTo(std::ostream& os) const { // NOLINT
|
| - HBinaryCall::PrintDataTo(os);
|
| - if (syntactic_tail_call_mode() == TailCallMode::kAllow) {
|
| - os << ", JSTailCall";
|
| - }
|
| - return os;
|
| -}
|
|
|
| void HBoundsCheck::ApplyIndexChange() {
|
| if (skip_check()) return;
|
| @@ -1045,11 +1033,7 @@
|
| for (int i = 0; i < OperandCount(); i++) {
|
| os << NameOf(OperandAt(i)) << " ";
|
| }
|
| - os << "#" << argument_count();
|
| - if (syntactic_tail_call_mode() == TailCallMode::kAllow) {
|
| - os << ", JSTailCall";
|
| - }
|
| - return os;
|
| + return os << "#" << argument_count();
|
| }
|
|
|
|
|
|
|