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

Unified Diff: src/objects.cc

Issue 7170012: Crankshaft support for polymorphic array handling (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: address comments; add implemention for ARM and x64 Created 9 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
Index: src/objects.cc
diff --git a/src/objects.cc b/src/objects.cc
index 6185e2dcf049484646a37600c1f944222e18b4b9..2f5b1ae719047bc178e4f32f4384a36c9acdca4b 100644
--- a/src/objects.cc
+++ b/src/objects.cc
@@ -4408,8 +4408,7 @@ class PolymorphicCodeCacheHashTableKey : public HashTableKey {
MapList* maps_; // weak.
int code_flags_;
- static const int kDefaultListAllocationSize =
- KeyedIC::kMaxKeyedPolymorphism + 1;
+ static const int kDefaultListAllocationSize = kMaxKeyedPolymorphism + 1;
};
@@ -7030,7 +7029,7 @@ void Code::PrintExtraICState(FILE* out, Kind kind, ExtraICState extra) {
if (name != NULL) {
PrintF(out, "extra_ic_state = %s\n", name);
} else {
- PrintF(out, "etra_ic_state = %d\n", extra);
+ PrintF(out, "extra_ic_state = %d\n", extra);
}
}

Powered by Google App Engine
This is Rietveld 408576698