Index: src/ic/ia32/ic-ia32.cc |
diff --git a/src/ic/ia32/ic-ia32.cc b/src/ic/ia32/ic-ia32.cc |
index d32e1c346bed04e208a3f033c9d4f5741fa5b242..82b0dd2b0f20569b894df4825237219eb3f7393a 100644 |
--- a/src/ic/ia32/ic-ia32.cc |
+++ b/src/ic/ia32/ic-ia32.cc |
@@ -836,8 +836,9 @@ void PatchInlinedSmiCode(Isolate* isolate, Address address, |
// condition code uses at the patched jump. |
uint8_t delta = *reinterpret_cast<uint8_t*>(delta_address); |
if (FLAG_trace_ic) { |
- PrintF("[ patching ic at %p, test=%p, delta=%d\n", address, |
- test_instruction_address, delta); |
+ PrintF("[ patching ic at %p, test=%p, delta=%d\n", |
+ static_cast<void*>(address), |
+ static_cast<void*>(test_instruction_address), delta); |
} |
// Patch with a short conditional jump. Enabling means switching from a short |