Revision: 7564
Author:   [email protected]
Date:     Mon Apr 11 01:59:29 2011
Log:      ARM: Fix wrong fall through handling

Looks like a copy/paste mistake.

[email protected]

BUG=
TEST=

Review URL: http://codereview.chromium.org//6826031
http://code.google.com/p/v8/source/detail?r=7564

Modified:
 /branches/bleeding_edge/src/arm/full-codegen-arm.cc

=======================================
--- /branches/bleeding_edge/src/arm/full-codegen-arm.cc Fri Apr 8 04:37:30 2011 +++ /branches/bleeding_edge/src/arm/full-codegen-arm.cc Mon Apr 11 01:59:29 2011
@@ -431,8 +431,7 @@
     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_);
     }

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to