Index: src/runtime/runtime.h |
diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h |
index 27cded0875f848664b0a33ac63a7ed9d6aeafb2c..bc9784cff2aa6caa93a37b683c3d74bb643268c8 100644 |
--- a/src/runtime/runtime.h |
+++ b/src/runtime/runtime.h |
@@ -470,7 +470,6 @@ namespace internal { |
F(Equals, 2, 1) \ |
F(StrictEquals, 2, 1) \ |
F(Compare, 3, 1) \ |
- F(Compare_Strong, 3, 1) \ |
F(InstanceOf, 2, 1) \ |
F(HasInPrototypeChain, 2, 1) \ |
F(CreateIterResultObject, 2, 1) \ |
@@ -491,30 +490,18 @@ namespace internal { |
F(GetObjectContextObjectGetNotifier, 1, 1) \ |
F(GetObjectContextNotifierPerformChange, 1, 1) |
- |
#define FOR_EACH_INTRINSIC_OPERATORS(F) \ |
F(Multiply, 2, 1) \ |
- F(Multiply_Strong, 2, 1) \ |
F(Divide, 2, 1) \ |
- F(Divide_Strong, 2, 1) \ |
F(Modulus, 2, 1) \ |
- F(Modulus_Strong, 2, 1) \ |
F(Add, 2, 1) \ |
- F(Add_Strong, 2, 1) \ |
F(Subtract, 2, 1) \ |
- F(Subtract_Strong, 2, 1) \ |
F(ShiftLeft, 2, 1) \ |
- F(ShiftLeft_Strong, 2, 1) \ |
F(ShiftRight, 2, 1) \ |
- F(ShiftRight_Strong, 2, 1) \ |
F(ShiftRightLogical, 2, 1) \ |
- F(ShiftRightLogical_Strong, 2, 1) \ |
F(BitwiseAnd, 2, 1) \ |
- F(BitwiseAnd_Strong, 2, 1) \ |
F(BitwiseOr, 2, 1) \ |
- F(BitwiseOr_Strong, 2, 1) \ |
- F(BitwiseXor, 2, 1) \ |
- F(BitwiseXor_Strong, 2, 1) |
+ F(BitwiseXor, 2, 1) |
#define FOR_EACH_INTRINSIC_PROXY(F) \ |
F(IsJSProxy, 1, 1) \ |