Revision: 7096
Author: [email protected]
Date: Wed Mar 9 02:29:14 2011
Log: Remove unneccesary JumpTableEntry pointer from lithium-codegen-x64.cc
Review URL: http://codereview.chromium.org/6648028
http://code.google.com/p/v8/source/detail?r=7096
Modified:
/branches/bleeding_edge/src/x64/lithium-codegen-x64.cc
=======================================
--- /branches/bleeding_edge/src/x64/lithium-codegen-x64.cc Wed Mar 9
02:02:47 2011
+++ /branches/bleeding_edge/src/x64/lithium-codegen-x64.cc Wed Mar 9
02:29:14 2011
@@ -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