Commit df7bbc23 authored by ricow@chromium.org's avatar ricow@chromium.org

Remove unneccesary JumpTableEntry pointer from lithium-codegen-x64.cc

Review URL: http://codereview.chromium.org/6648028

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@7096 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 7783cc48
......@@ -258,9 +258,8 @@ LInstruction* LCodeGen::GetNextInstruction() {
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();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment