Index: src/interpreter/interpreter-intrinsics-generator.cc |
diff --git a/src/interpreter/interpreter-intrinsics-generator.cc b/src/interpreter/interpreter-intrinsics-generator.cc |
index d9ca1e21eea27d57251adbd735ba4f6be0a56de4..a22cecca27b44dc92f9e98bc94ecc89673684731 100644 |
--- a/src/interpreter/interpreter-intrinsics-generator.cc |
+++ b/src/interpreter/interpreter-intrinsics-generator.cc |
@@ -197,36 +197,6 @@ |
return IsInstanceType(input, JS_TYPED_ARRAY_TYPE); |
} |
-Node* IntrinsicsGenerator::IsJSMap(Node* input, Node* arg_count, |
- Node* context) { |
- return IsInstanceType(input, JS_MAP_TYPE); |
-} |
- |
-Node* IntrinsicsGenerator::IsJSMapIterator(Node* input, Node* arg_count, |
- Node* context) { |
- return IsInstanceType(input, JS_MAP_ITERATOR_TYPE); |
-} |
- |
-Node* IntrinsicsGenerator::IsJSSet(Node* input, Node* arg_count, |
- Node* context) { |
- return IsInstanceType(input, JS_SET_TYPE); |
-} |
- |
-Node* IntrinsicsGenerator::IsJSSetIterator(Node* input, Node* arg_count, |
- Node* context) { |
- return IsInstanceType(input, JS_SET_ITERATOR_TYPE); |
-} |
- |
-Node* IntrinsicsGenerator::IsJSWeakMap(Node* input, Node* arg_count, |
- Node* context) { |
- return IsInstanceType(input, JS_WEAK_MAP_TYPE); |
-} |
- |
-Node* IntrinsicsGenerator::IsJSWeakSet(Node* input, Node* arg_count, |
- Node* context) { |
- return IsInstanceType(input, JS_WEAK_SET_TYPE); |
-} |
- |
Node* IntrinsicsGenerator::IsSmi(Node* input, Node* arg_count, Node* context) { |
// TODO(ishell): Use SelectBooleanConstant here. |
InterpreterAssembler::Variable return_value(assembler_, |