Revision: 9754 Author: [email protected] Date: Mon Oct 24 05:19:55 2011 Log: Fix typo in type-name and reorder initialization order.
Remember, when coming back to an old CL, do check that it still works. Review URL: http://codereview.chromium.org/8351002 http://code.google.com/p/v8/source/detail?r=9754 Modified: /branches/bleeding_edge/src/ia32/disasm-ia32.cc ======================================= --- /branches/bleeding_edge/src/ia32/disasm-ia32.cc Mon Oct 24 05:07:35 2011 +++ /branches/bleeding_edge/src/ia32/disasm-ia32.cc Mon Oct 24 05:19:55 2011 @@ -268,8 +268,8 @@ public: DisassemblerIA32(const NameConverter& converter, bool abort_on_unimplemented = true) - : instruction_table_(InstructionTabel::get_instance()), - converter_(converter), + : converter_(converter), + instruction_table_(InstructionTable::get_instance()), tmp_buffer_pos_(0), abort_on_unimplemented_(abort_on_unimplemented) { tmp_buffer_[0] = '\0'; -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
