Fix invalid ASSERT() in HasStableMapValue().

R=svenpanne@chromium.org

Review URL: https://codereview.chromium.org/267363002

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@21183 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
bmeurer@chromium.org 2014-05-07 06:24:29 +00:00
parent 663c73b3d2
commit 87568c5704

View File

@ -3617,7 +3617,7 @@ class HConstant V8_FINAL : public HTemplateInstruction<0> {
return Unique<Map>::cast(GetUnique());
}
bool HasStableMapValue() const {
ASSERT(HasMapValue());
ASSERT(HasMapValue() || !has_stable_map_value_);
return has_stable_map_value_;
}