diff options
author | Michaël Zasso <targos@protonmail.com> | 2017-05-02 10:50:00 +0200 |
---|---|---|
committer | Michaël Zasso <targos@protonmail.com> | 2017-05-06 20:02:35 +0200 |
commit | 60d1aac8d225e844e68ae48e8f3d58802e635fbe (patch) | |
tree | 922f347dd054db18d88666fad7181e5a777f4022 /deps/v8/src/ic/stub-cache.h | |
parent | 73d9c0f903ae371cd5011af64c3a6f69a1bda978 (diff) | |
download | node-new-60d1aac8d225e844e68ae48e8f3d58802e635fbe.tar.gz |
deps: update V8 to 5.8.283.38
PR-URL: https://github.com/nodejs/node/pull/12784
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Diffstat (limited to 'deps/v8/src/ic/stub-cache.h')
-rw-r--r-- | deps/v8/src/ic/stub-cache.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/v8/src/ic/stub-cache.h b/deps/v8/src/ic/stub-cache.h index e8df26d37b..4054b329d3 100644 --- a/deps/v8/src/ic/stub-cache.h +++ b/deps/v8/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); |