| Index: src/compiler/instruction.cc
|
| diff --git a/src/compiler/instruction.cc b/src/compiler/instruction.cc
|
| index 2ee98fa0fd665e735ce06a9fc2c0a5e9bb98f580..6963307dc3e2b58c4e67455aa2e1d50d3741c2cc 100644
|
| --- a/src/compiler/instruction.cc
|
| +++ b/src/compiler/instruction.cc
|
| @@ -239,6 +239,10 @@ OStream& operator<<(OStream& os, const FlagsCondition& fc) {
|
| return os << "unordered less than or equal";
|
| case kUnorderedGreaterThan:
|
| return os << "unordered greater than";
|
| + case kOverflow:
|
| + return os << "overflow";
|
| + case kNotOverflow:
|
| + return os << "not overflow";
|
| }
|
| UNREACHABLE();
|
| return os;
|
|
|