Index: src/compiler/instruction.cc |
diff --git a/src/compiler/instruction.cc b/src/compiler/instruction.cc |
index 34a3151009f78887fff4b086c7e1cbeced996b3a..6c358fb9c0f9435374fb501214a03cd3a392fa83 100644 |
--- a/src/compiler/instruction.cc |
+++ b/src/compiler/instruction.cc |
@@ -50,6 +50,8 @@ std::ostream& operator<<(std::ostream& os, |
return os << "[" << conf->general_register_name(op.index()) << "|R]"; |
case InstructionOperand::DOUBLE_REGISTER: |
return os << "[" << conf->double_register_name(op.index()) << "|R]"; |
+ case InstructionOperand::INVALID: |
+ return os << "(x)"; |
} |
UNREACHABLE(); |
return os; |