Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(397)

Unified Diff: src/hydrogen.cc

Issue 11419115: Fix build (and fix brown paper bug as well...). (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/hydrogen.cc
diff --git a/src/hydrogen.cc b/src/hydrogen.cc
index a719aa99c9bec3b8a98cfa4ed0e789f7e16a323a..ddf86c5e4706c7e2168d6ace7096bb3edb337db9 100644
--- a/src/hydrogen.cc
+++ b/src/hydrogen.cc
@@ -6653,7 +6653,7 @@ void HGraphBuilder::VisitProperty(Property* expr) {
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;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698