| Index: src/compiler/verifier.cc
|
| diff --git a/src/compiler/verifier.cc b/src/compiler/verifier.cc
|
| index 03fc62640dc01531d9aef423e0fc8d8533b5d592..ef87fbb5f86fa2af730e0269b6e6e86dac7496a1 100644
|
| --- a/src/compiler/verifier.cc
|
| +++ b/src/compiler/verifier.cc
|
| @@ -635,6 +635,11 @@ void Verifier::Visitor::Check(Node* node) {
|
| // Type is String.
|
| CheckTypeIs(node, Type::String());
|
| break;
|
| + case IrOpcode::kJSGetSuperConstructor:
|
| + // Function -> Callable.
|
| + CheckValueInputIs(node, 0, Type::Function());
|
| + CheckTypeIs(node, Type::Callable());
|
| + break;
|
|
|
| case IrOpcode::kJSLoadContext:
|
| // Type can be anything.
|
|
|