Add missing V8_EXPORT_PRIVATE to operator<< for OperandType

The missing export caused component build breakage when
Bytecodes::SizeOfOperand was moved into the header in
https://codereview.chromium.org/2950993002.

BUG=none

Review-Url: https://codereview.chromium.org/2954353002
Cr-Commit-Position: refs/heads/master@{#46228}
This commit is contained in:
hans 2017-06-26 10:35:43 -07:00 committed by Commit Bot
parent 5152d97870
commit a2f51f7790

View File

@ -130,7 +130,8 @@ V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream& os,
const OperandScale& operand_scale);
V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream& os,
const OperandSize& operand_size);
std::ostream& operator<<(std::ostream& os, const OperandType& operand_type);
V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream& os,
const OperandType& operand_type);
class BytecodeOperands {
public: