From: danno@chromium.org Date: Mon, 29 Oct 2012 11:45:40 +0000 (+0000) Subject: Remove redundant jump to deoptimization (the jump already exists in DoCheckMapCommon) X-Git-Tag: upstream/4.7.83~15763 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e96d49047bf8fc5f4928f27c64abec4674be66e5;p=platform%2Fupstream%2Fv8.git Remove redundant jump to deoptimization (the jump already exists in DoCheckMapCommon) BUG=none TEST=none Review URL: https://codereview.chromium.org/11265044 Patch from Rajeev Krithivasan . git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@12828 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/AUTHORS b/AUTHORS index 7a977a3..c279e7c 100644 --- a/AUTHORS +++ b/AUTHORS @@ -45,6 +45,7 @@ Paolo Giarrusso Patrick Gansterer Peter Varga Rafal Krypa +Rajeev R Krithivasan Rene Rebe Robert Mustacchi Rodolph Perfetta diff --git a/src/arm/lithium-codegen-arm.cc b/src/arm/lithium-codegen-arm.cc index 6f5aa43..ea482af 100644 --- a/src/arm/lithium-codegen-arm.cc +++ b/src/arm/lithium-codegen-arm.cc @@ -4936,7 +4936,6 @@ void LCodeGen::DoCheckPrototypeMaps(LCheckPrototypeMaps* instr) { DoCheckMapCommon(temp1, temp2, Handle(current_prototype->map()), ALLOW_ELEMENT_TRANSITION_MAPS, instr->environment()); - DeoptimizeIf(ne, instr->environment()); }