diff --git a/src/arm/full-codegen-arm.cc b/src/arm/full-codegen-arm.cc index fe0471f5bd..871b4539ef 100644 --- a/src/arm/full-codegen-arm.cc +++ b/src/arm/full-codegen-arm.cc @@ -431,8 +431,7 @@ void FullCodeGenerator::TestContext::Plug(Handle lit) const { if (true_label_ != fall_through_) __ b(true_label_); } else if (lit->IsString()) { if (String::cast(*lit)->length() == 0) { - if (false_label_ != fall_through_) __ b(false_label_); - __ b(false_label_); + if (false_label_ != fall_through_) __ b(false_label_); } else { if (true_label_ != fall_through_) __ b(true_label_); }