| Index: src/mips/disasm-mips.cc
|
| diff --git a/src/mips/disasm-mips.cc b/src/mips/disasm-mips.cc
|
| index 0eca71f2b84124970062184fa029f11a5190fa2c..b787f13feffa8077a3db6b3ec7b23d4aa5df1062 100644
|
| --- a/src/mips/disasm-mips.cc
|
| +++ b/src/mips/disasm-mips.cc
|
| @@ -1051,8 +1051,8 @@ void Disassembler::Disassemble(FILE* f, byte* begin, byte* end) {
|
| buffer[0] = '\0';
|
| byte* prev_pc = pc;
|
| pc += d.InstructionDecode(buffer, pc);
|
| - fprintf(f, "%p %08x %s\n",
|
| - prev_pc, *reinterpret_cast<int32_t*>(prev_pc), buffer.start());
|
| + v8::internal::PrintF(f, "%p %08x %s\n",
|
| + prev_pc, *reinterpret_cast<int32_t*>(prev_pc), buffer.start());
|
| }
|
| }
|
|
|
|
|