Chromium Code Reviews| Index: src/mips/disasm-mips.cc |
| diff --git a/src/mips/disasm-mips.cc b/src/mips/disasm-mips.cc |
| index 0eca71f2b84124970062184fa029f11a5190fa2c..8fce1aeace79f8ef182f7a5de93db30389001f32 100644 |
| --- a/src/mips/disasm-mips.cc |
| +++ b/src/mips/disasm-mips.cc |
| @@ -1051,8 +1051,9 @@ 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( |
|
Paul Lind
2013/04/11 00:25:37
nit: why do we need v8::internal:: here?
And even
palfia
2013/04/11 00:39:03
We have to use the fully qualified name here, beca
|
| + f, "%p %08x %s\n", |
| + prev_pc, *reinterpret_cast<int32_t*>(prev_pc), buffer.start()); |
| } |
| } |