Index: src/interpreter/bytecode-operands.h |
diff --git a/src/interpreter/bytecode-operands.h b/src/interpreter/bytecode-operands.h |
index e62ba8fa317d0923e12e885f812426b68b247e89..4c8930d33d0a826a724a103b34b4a9433cadc484 100644 |
--- a/src/interpreter/bytecode-operands.h |
+++ b/src/interpreter/bytecode-operands.h |
@@ -114,10 +114,12 @@ inline AccumulatorUse operator|(AccumulatorUse lhs, AccumulatorUse rhs) { |
return static_cast<AccumulatorUse>(result); |
} |
-std::ostream& operator<<(std::ostream& os, const AccumulatorUse& use); |
+V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream& os, |
+ const AccumulatorUse& use); |
V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream& os, |
const OperandScale& operand_scale); |
-std::ostream& operator<<(std::ostream& os, const OperandSize& operand_size); |
+V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream& os, |
+ const OperandSize& operand_size); |
std::ostream& operator<<(std::ostream& os, const OperandType& operand_type); |
} // namespace interpreter |