| Index: src/compiler/common-operator.cc
 | 
| diff --git a/src/compiler/common-operator.cc b/src/compiler/common-operator.cc
 | 
| index 4f5ead89eb02b2d41a159a7a1a69e24426e3a949..7f1b0846e1b0be3941688aca152dc03e4a07b003 100644
 | 
| --- a/src/compiler/common-operator.cc
 | 
| +++ b/src/compiler/common-operator.cc
 | 
| @@ -878,7 +878,7 @@ const Operator* CommonOperatorBuilder::Call(const CallDescriptor* descriptor) {
 | 
|                Operator::ZeroIfPure(descriptor->properties()),
 | 
|                Operator::ZeroIfNoThrow(descriptor->properties()), descriptor) {}
 | 
|  
 | 
| -    void PrintParameter(std::ostream& os) const override {
 | 
| +    void PrintParameter(std::ostream& os, PrintVerbosity verbose) const {
 | 
|        os << "[" << *parameter() << "]";
 | 
|      }
 | 
|    };
 | 
| @@ -896,7 +896,7 @@ const Operator* CommonOperatorBuilder::TailCall(
 | 
|                descriptor->InputCount() + descriptor->FrameStateCount(), 1, 1, 0,
 | 
|                0, 1, descriptor) {}
 | 
|  
 | 
| -    void PrintParameter(std::ostream& os) const override {
 | 
| +    void PrintParameter(std::ostream& os, PrintVerbosity verbose) const {
 | 
|        os << "[" << *parameter() << "]";
 | 
|      }
 | 
|    };
 | 
| 
 |