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

Unified Diff: src/types.cc

Issue 16925008: Generate StoreGlobal stubs with Hydrogen (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Finish code dependencies Created 7 years, 6 months 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 | « src/stub-cache.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/types.cc
diff --git a/src/types.cc b/src/types.cc
index 20e8a4c994541fc18f10e3cdbece64843645acd8..9a608d94658e89d927f4b19f43e13827ecf58dfa 100644
--- a/src/types.cc
+++ b/src/types.cc
@@ -302,7 +302,13 @@ bool Type::InUnion(Handle<Unioned> unioned, int current_size) {
ASSERT(!this->is_union());
for (int i = 0; i < current_size; ++i) {
Handle<Type> type = union_get(unioned, i);
- if (type->is_bitset() ? this->Is(type) : this == *type) return true;
+ if (type->is_bitset()) return this->Is(type);
rossberg 2013/06/19 09:45:15 This whole piece of code should probably be simpli
+ if (this == *type) return true;
+ if (type->is_constant()) {
+ if (this->is_constant() && *type->as_constant() == *this->as_constant()) {
+ return true;
+ }
+ }
}
return false;
}
« no previous file with comments | « src/stub-cache.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698