| Index: runtime/vm/disassembler_ia32.cc
|
| ===================================================================
|
| --- runtime/vm/disassembler_ia32.cc (revision 20391)
|
| +++ runtime/vm/disassembler_ia32.cc (working copy)
|
| @@ -1744,9 +1744,9 @@
|
| }
|
|
|
|
|
| -bool Disassembler::DecodeInstruction(char* hex_buffer, intptr_t hex_size,
|
| - char* human_buffer, intptr_t human_size,
|
| - int* out_instr_len, uword pc) {
|
| +void Disassembler::DecodeInstruction(char* hex_buffer, intptr_t hex_size,
|
| + char* human_buffer, intptr_t human_size,
|
| + int* out_instr_len, uword pc) {
|
| ASSERT(hex_size > 0);
|
| ASSERT(human_size > 0);
|
| X86Decoder decoder(human_buffer, human_size);
|
| @@ -1763,11 +1763,10 @@
|
| if (out_instr_len) {
|
| *out_instr_len = instruction_length;
|
| }
|
| - return true;
|
| }
|
|
|
|
|
| -bool Disassembler::Disassemble(uword start,
|
| +void Disassembler::Disassemble(uword start,
|
| uword end,
|
| DisassemblyFormatter* formatter,
|
| const Code::Comments& comments) {
|
| @@ -1799,7 +1798,7 @@
|
| pc += instruction_length;
|
| }
|
|
|
| - return true;
|
| + return;
|
| }
|
|
|
| } // namespace dart
|
|
|