| Index: src/interpreter/bytecodes.h | 
| diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h | 
| index 6232966bbca1abd5d655d46f1a915fcf613d26cf..068feec1bb70c957302a407a62dd8a492b4aef03 100644 | 
| --- a/src/interpreter/bytecodes.h | 
| +++ b/src/interpreter/bytecodes.h | 
| @@ -314,7 +314,7 @@ enum class Bytecode : uint8_t { | 
| #define CONSTEXPR constexpr | 
| #endif | 
|  | 
| -class Bytecodes final { | 
| +class V8_EXPORT_PRIVATE Bytecodes final { | 
| public: | 
| //  The maximum number of operands a bytecode may have. | 
| static const int kMaxOperands = 4; | 
| @@ -733,7 +733,8 @@ class Bytecodes final { | 
| // See crbug.com/603131. | 
| #undef CONSTEXPR | 
|  | 
| -std::ostream& operator<<(std::ostream& os, const Bytecode& bytecode); | 
| +V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream& os, | 
| +                                           const Bytecode& bytecode); | 
|  | 
| }  // namespace interpreter | 
| }  // namespace internal | 
|  |