Reviewers: Kasper Lund, Description: Remove unneccesary JumpTableEntry pointer from lithium-codegen-x64.cc
Please review this at http://codereview.chromium.org/6648028/ SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/x64/lithium-codegen-x64.cc Index: src/x64/lithium-codegen-x64.cc =================================================================== --- src/x64/lithium-codegen-x64.cc (revision 7095) +++ src/x64/lithium-codegen-x64.cc (working copy) @@ -258,9 +258,8 @@ bool LCodeGen::GenerateJumpTable() { for (int i = 0; i < jump_table_.length(); i++) { - JumpTableEntry* info = &jump_table_[i]; __ bind(&jump_table_[i].label); - __ Jump(info->address, RelocInfo::RUNTIME_ENTRY); + __ Jump(jump_table_[i].address, RelocInfo::RUNTIME_ENTRY); } return !is_aborted(); } -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
