| Index: src/runtime/runtime.h
|
| diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h
|
| index ca90b2fab0d215cafe5037a6704f31a0dbcbcf2c..9104749bb94b8f7d3eb45f063542f3e15e27f434 100644
|
| --- a/src/runtime/runtime.h
|
| +++ b/src/runtime/runtime.h
|
| @@ -467,6 +467,8 @@ namespace internal {
|
| F(ToName, 1, 1) \
|
| F(Equals, 2, 1) \
|
| F(StrictEquals, 2, 1) \
|
| + F(SameValue, 2, 1) \
|
| + F(SameValueZero, 2, 1) \
|
| F(Compare, 3, 1) \
|
| F(InstanceOf, 2, 1) \
|
| F(HasInPrototypeChain, 2, 1) \
|
| @@ -550,8 +552,6 @@ namespace internal {
|
|
|
| #define FOR_EACH_INTRINSIC_SIMD(F) \
|
| F(IsSimdValue, 1, 1) \
|
| - F(SimdSameValue, 2, 1) \
|
| - F(SimdSameValueZero, 2, 1) \
|
| F(CreateFloat32x4, 4, 1) \
|
| F(CreateInt32x4, 4, 1) \
|
| F(CreateUint32x4, 4, 1) \
|
|
|