Index: runtime/vm/code_generator.cc |
diff --git a/runtime/vm/code_generator.cc b/runtime/vm/code_generator.cc |
index 796cf610ea552edf696290f9b3b361906658b48b..69bad4974acc2858279cf8d2fa3c0ae93309246c 100644 |
--- a/runtime/vm/code_generator.cc |
+++ b/runtime/vm/code_generator.cc |
@@ -1548,8 +1548,11 @@ static void DeoptimizeWithDeoptInfo(const Code& code, |
} |
if (FLAG_trace_deopt) { |
for (intptr_t i = 0; i < len; i++) { |
- OS::Print("*%d. 0x%x [%s]\n", |
- i, start[i], deopt_instructions[i]->ToCString()); |
+ OS::Print("*%d. [0x%0" PRIxPTR "] 0x%012" PRIxPTR " [%s]\n", |
+ i, |
+ &start[i], |
+ start[i], |
+ deopt_instructions[i]->ToCString()); |
} |
} |
} |