Index: lang/v8/files/patch-src-x64-disasm-x64.cc =================================================================== --- lang/v8/files/patch-src-x64-disasm-x64.cc (nonexistent) +++ lang/v8/files/patch-src-x64-disasm-x64.cc (working copy) @@ -0,0 +1,11 @@ +--- src/x64/disasm-x64.cc.orig 2013-05-01 14:56:28.000000000 +0200 ++++ src/x64/disasm-x64.cc 2016-01-17 14:21:39.864845000 +0100 +@@ -1851,7 +1851,7 @@ void Disassembler::Disassemble(FILE* f, + buffer[0] = '\0'; + byte* prev_pc = pc; + pc += d.InstructionDecode(buffer, pc); +- fprintf(f, "%p", prev_pc); ++ fprintf(f, "%p", reinterpret_cast(prev_pc)); + fprintf(f, " "); + + for (byte* bp = prev_pc; bp < pc; bp++) { Property changes on: lang/v8/files/patch-src-x64-disasm-x64.cc ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: lang/v8/files/patch-src-x64-ic-x64.cc =================================================================== --- lang/v8/files/patch-src-x64-ic-x64.cc (nonexistent) +++ lang/v8/files/patch-src-x64-ic-x64.cc (working copy) @@ -0,0 +1,12 @@ +--- src/x64/ic-x64.cc.orig 2013-05-01 14:56:28.000000000 +0200 ++++ src/x64/ic-x64.cc 2016-01-17 14:22:17.327754000 +0100 +@@ -1672,7 +1672,8 @@ void PatchInlinedSmiCode(Address address + int8_t delta = *reinterpret_cast(delta_address); + if (FLAG_trace_ic) { + PrintF("[ patching ic at %p, test=%p, delta=%d\n", +- address, test_instruction_address, delta); ++ reinterpret_cast(address), ++ reinterpret_cast(test_instruction_address), delta); + } + + // Patch with a short conditional jump. Enabling means switching from a short Property changes on: lang/v8/files/patch-src-x64-ic-x64.cc ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property