Fix x64 build after r7567

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@7568 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
mikhail.naganov@gmail.com 2011-04-11 11:49:55 +00:00
parent 690093effe
commit 576660e182

View File

@ -564,7 +564,7 @@ void LCodeGen::DeoptimizeIf(Condition cc, LEnvironment* environment) {
// jump entry if this is the case.
if (jump_table_.is_empty() ||
jump_table_.last().address != entry) {
jump_table_.Add(entry);
jump_table_.Add(JumpTableEntry(entry));
}
__ j(cc, &jump_table_.last().label);
}