| Index: src/ic/stub-cache.h
|
| diff --git a/src/ic/stub-cache.h b/src/ic/stub-cache.h
|
| index e8df26d37b3b6142297bf228315534c0bc8e97a9..4054b329d34f3685adabfd35c447054f7bcb6b89 100644
|
| --- a/src/ic/stub-cache.h
|
| +++ b/src/ic/stub-cache.h
|
| @@ -74,7 +74,7 @@ class StubCache {
|
| return StubCache::secondary_;
|
| }
|
| UNREACHABLE();
|
| - return NULL;
|
| + return nullptr;
|
| }
|
|
|
| Isolate* isolate() { return isolate_; }
|
| @@ -92,7 +92,7 @@ class StubCache {
|
|
|
| // Some magic number used in primary and secondary hash computations.
|
| static const int kPrimaryMagic = 0x3d532433;
|
| - static const int kSecondaryMagic = 0xb16b00b5;
|
| + static const int kSecondaryMagic = 0xb16ca6e5;
|
|
|
| static int PrimaryOffsetForTesting(Name* name, Map* map) {
|
| return PrimaryOffset(name, map);
|
|
|