Chromium Code Reviews

Unified Diff: src/x64/lithium-codegen-x64.cc

Issue 6648028: Remove unneccesary JumpTableEntry pointer from lithium-codegen-x64.cc (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine