Index: src/objects.cc |
diff --git a/src/objects.cc b/src/objects.cc |
index 5f2a7b5b2e262fb504426b4e00f6d789725e7196..fa2f1b648c107219bf0caa3787a96a63cd72a12c 100644 |
--- a/src/objects.cc |
+++ b/src/objects.cc |
@@ -10792,7 +10792,8 @@ void Code::Disassemble(const char* name, FILE* out) { |
for (uint32_t i = 0; i < table_length; ++i) { |
uint32_t ast_id = Memory::uint32_at(back_edge_cursor); |
uint32_t pc_offset = Memory::uint32_at(back_edge_cursor + kIntSize); |
- uint8_t loop_depth = Memory::uint8_at(back_edge_cursor + 2 * kIntSize); |
+ uint32_t loop_depth = Memory::uint32_at(back_edge_cursor + |
+ 2 * kIntSize); |
PrintF(out, "%6u %9u %10u\n", ast_id, pc_offset, loop_depth); |
back_edge_cursor += FullCodeGenerator::kBackEdgeEntrySize; |
} |