Chromium Code Reviews| Index: src/compiler/verifier.cc |
| diff --git a/src/compiler/verifier.cc b/src/compiler/verifier.cc |
| index 29e6746b7ce39c1a26a2d6a86c6b640ad1c58f7d..3454ec3f8bed54aae5767666007cd9f010c87a7f 100644 |
| --- a/src/compiler/verifier.cc |
| +++ b/src/compiler/verifier.cc |
| @@ -611,6 +611,10 @@ void Verifier::Visitor::Check(Node* node) { |
| // Type is String. |
| CheckTypeIs(node, Type::String()); |
| break; |
| + case IrOpcode::kJSGetSuperConstructor: |
| + // Type is Function. |
|
Benedikt Meurer
2016/11/23 04:51:00
Nit: Type is Receiver.
|
| + CheckTypeIs(node, Type::Function()); |
|
Benedikt Meurer
2016/11/23 04:51:00
Nit: Type::Receiver
|
| + break; |
| case IrOpcode::kJSLoadContext: |
| // Type can be anything. |