View | Details | Raw Unified | Return to bug 206332 | Differences between
and this patch

Collapse All | Expand All

(-)lang/v8/files/patch-src-x64-disasm-x64.cc (+11 lines)
Line 0 Link Here
1
--- src/x64/disasm-x64.cc.orig	2013-05-01 14:56:28.000000000 +0200
2
+++ src/x64/disasm-x64.cc	2016-01-17 14:21:39.864845000 +0100
3
@@ -1851,7 +1851,7 @@ void Disassembler::Disassemble(FILE* f, 
4
     buffer[0] = '\0';
5
     byte* prev_pc = pc;
6
     pc += d.InstructionDecode(buffer, pc);
7
-    fprintf(f, "%p", prev_pc);
8
+    fprintf(f, "%p", reinterpret_cast<void*>(prev_pc));
9
     fprintf(f, "    ");
10
 
11
     for (byte* bp = prev_pc; bp < pc; bp++) {
(-)lang/v8/files/patch-src-x64-ic-x64.cc (+12 lines)
Line 0 Link Here
1
--- src/x64/ic-x64.cc.orig	2013-05-01 14:56:28.000000000 +0200
2
+++ src/x64/ic-x64.cc	2016-01-17 14:22:17.327754000 +0100
3
@@ -1672,7 +1672,8 @@ void PatchInlinedSmiCode(Address address
4
   int8_t delta = *reinterpret_cast<int8_t*>(delta_address);
5
   if (FLAG_trace_ic) {
6
     PrintF("[  patching ic at %p, test=%p, delta=%d\n",
7
-           address, test_instruction_address, delta);
8
+           reinterpret_cast<void*>(address),
9
+           reinterpret_cast<void*>(test_instruction_address), delta);
10
   }
11
 
12
   // Patch with a short conditional jump. Enabling means switching from a short

Return to bug 206332