Index: src/ic/x87/ic-x87.cc |
diff --git a/src/ic/x87/ic-x87.cc b/src/ic/x87/ic-x87.cc |
index 94919549c590adcea2dba705addfeca886199a10..964b525bab9ac68507fa1b3a601acb7242b8bbea 100644 |
--- a/src/ic/x87/ic-x87.cc |
+++ b/src/ic/x87/ic-x87.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 |