Index: src/compiler/instruction.cc |
diff --git a/src/compiler/instruction.cc b/src/compiler/instruction.cc |
index 1e8cad3b0275c4c294c25aca295adb46d90a8d30..86f00f3a0af5799ad99291143341c70b4b6cf4fc 100644 |
--- a/src/compiler/instruction.cc |
+++ b/src/compiler/instruction.cc |
@@ -33,6 +33,8 @@ std::ostream& operator<<(std::ostream& os, |
unalloc->fixed_register_index()) << ")"; |
case UnallocatedOperand::MUST_HAVE_REGISTER: |
return os << "(R)"; |
+ case UnallocatedOperand::MUST_HAVE_SLOT: |
+ return os << "(S)"; |
case UnallocatedOperand::SAME_AS_FIRST_INPUT: |
return os << "(1)"; |
case UnallocatedOperand::ANY: |