| Index: src/code-stubs.h
|
| diff --git a/src/code-stubs.h b/src/code-stubs.h
|
| index e1ce81bd4532f768df49ed69613991a9913c9d5a..852a9706ad5c3b7d941bd963febc7c71de17ffd8 100644
|
| --- a/src/code-stubs.h
|
| +++ b/src/code-stubs.h
|
| @@ -1888,8 +1888,9 @@ class DoubleToIStub : public PlatformCodeStub {
|
| OffsetBits::encode(offset) |
|
| IsTruncatingBits::encode(is_truncating) |
|
| SkipFastPathBits::encode(skip_fastpath) |
|
| - SSEBits::encode(CpuFeatures::IsSafeForSnapshot(SSE2) ?
|
| - CpuFeatures::IsSafeForSnapshot(SSE3) ? 2 : 1 : 0);
|
| + SSEBits::encode(
|
| + CpuFeatures::IsSafeForSnapshot(isolate, SSE2) ?
|
| + CpuFeatures::IsSafeForSnapshot(isolate, SSE3) ? 2 : 1 : 0);
|
| }
|
|
|
| Register source() {
|
|
|