From a80f7f42dd24ab7041137ebc8216413482edc9a4 Mon Sep 17 00:00:00 2001 From: "ulan@chromium.org" Date: Tue, 2 Oct 2012 16:48:45 +0000 Subject: [PATCH] Make sure all labels are bound and linked in ARM DoModI. BUG=v8:2354 TBR=danno@chromium.org,subratokde@codeaurora.org Review URL: https://chromiumcodereview.appspot.com/11038017 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@12656 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/arm/lithium-codegen-arm.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arm/lithium-codegen-arm.cc b/src/arm/lithium-codegen-arm.cc index 1216486..326cc4e 100644 --- a/src/arm/lithium-codegen-arm.cc +++ b/src/arm/lithium-codegen-arm.cc @@ -1016,7 +1016,7 @@ void LCodeGen::DoModI(LModI* instr) { ASSERT(!scratch.is(right)); ASSERT(!scratch.is(result)); - Label done, vfp_modulo, both_positive, right_negative; + Label vfp_modulo, both_positive, right_negative; // Check for x % 0. if (instr->hydrogen()->CheckFlag(HValue::kCanBeDivByZero)) { -- 2.7.4