Revision: 13026
Author:   [email protected]
Date:     Wed Nov 21 04:17:18 2012
Log:      Fix build (and fix brown paper bug as well...).

BUG=

Review URL: https://chromiumcodereview.appspot.com/11419115
http://code.google.com/p/v8/source/detail?r=13026

Modified:
 /branches/bleeding_edge/src/hydrogen.cc

=======================================
--- /branches/bleeding_edge/src/hydrogen.cc     Wed Nov 21 03:49:15 2012
+++ /branches/bleeding_edge/src/hydrogen.cc     Wed Nov 21 04:17:18 2012
@@ -6653,7 +6653,7 @@
         is_array = true;
         for (int i = 0; i < types->length(); i++) {
           Handle<Map> current_map = types->at(i);
-          if (!current_map->instance_type() == JS_ARRAY_TYPE) {
+          if (current_map->instance_type() != JS_ARRAY_TYPE) {
             is_array = false;
             break;
           }

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

Reply via email to