Reviewers: Rico,
Description:
Fix typo in type-name and reorder initialization order.
Remember, when coming back to an old CL, do check that it still works.
Please review this at http://codereview.chromium.org/8351002/
SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files:
M src/ia32/disasm-ia32.cc
Index: src/ia32/disasm-ia32.cc
diff --git a/src/ia32/disasm-ia32.cc b/src/ia32/disasm-ia32.cc
index
8ece804c60f168587f875bfb1d3c10c790f48030..da223901193f77234ad7be857477b0a36cc2e8a8
100644
--- a/src/ia32/disasm-ia32.cc
+++ b/src/ia32/disasm-ia32.cc
@@ -268,8 +268,8 @@ class DisassemblerIA32 {
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