| 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);
|
| }
|
| }
|
|
|
|
|