Fix compile failure from revision 6934 and win64 compile failure from revision 6931.
Review URL: http://codereview.chromium.org/6576033 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@6935 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
68f1c73a06
commit
65e4a08793
@ -8274,6 +8274,7 @@ static void CollectElementIndices(Handle<JSObject> object,
|
|||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
UNREACHABLE();
|
UNREACHABLE();
|
||||||
|
dense_elements_length = 0;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
uint32_t length = static_cast<uint32_t>(dense_elements_length);
|
uint32_t length = static_cast<uint32_t>(dense_elements_length);
|
||||||
|
@ -304,7 +304,7 @@ void Deoptimizer::DoComputeOsrOutputFrame() {
|
|||||||
USE(height_in_bytes);
|
USE(height_in_bytes);
|
||||||
|
|
||||||
unsigned fixed_size = ComputeFixedSize(function_);
|
unsigned fixed_size = ComputeFixedSize(function_);
|
||||||
unsigned input_frame_size = input_->GetFrameSize();
|
unsigned input_frame_size = static_cast<unsigned>(input_->GetFrameSize());
|
||||||
ASSERT(fixed_size + height_in_bytes == input_frame_size);
|
ASSERT(fixed_size + height_in_bytes == input_frame_size);
|
||||||
|
|
||||||
unsigned stack_slot_size = optimized_code_->stack_slots() * kPointerSize;
|
unsigned stack_slot_size = optimized_code_->stack_slots() * kPointerSize;
|
||||||
|
Loading…
Reference in New Issue
Block a user