Index: src/disassembler.cc |
diff --git a/src/disassembler.cc b/src/disassembler.cc |
index e3b40ab93f1a11eca320141c02a003844d612951..9f8b9a820bc7fb65dd169aae2f6f1a24f30fc172 100644 |
--- a/src/disassembler.cc |
+++ b/src/disassembler.cc |
@@ -244,8 +244,8 @@ static int DecodeIt(FILE* f, |
out.AddFormatted(" %s, %s", Code::Kind2String(kind), |
Code::ICState2String(ic_state)); |
if (ic_state == MONOMORPHIC) { |
- PropertyType type = code->type(); |
- out.AddFormatted(", %s", Code::PropertyType2String(type)); |
+ Code::StubType type = code->type(); |
+ out.AddFormatted(", %s", Code::StubType2String(type)); |
} |
if (kind == Code::CALL_IC || kind == Code::KEYED_CALL_IC) { |
out.AddFormatted(", argc = %d", code->arguments_count()); |