| Index: runtime/vm/intermediate_language.cc
|
| ===================================================================
|
| --- runtime/vm/intermediate_language.cc (revision 8007)
|
| +++ runtime/vm/intermediate_language.cc (working copy)
|
| @@ -45,15 +45,6 @@
|
| }
|
|
|
|
|
| -intptr_t InstanceOfComp::InputCount() const {
|
| - // Value and optional instantiator and instantiator type_arguments.
|
| - intptr_t count = 1;
|
| - if (instantiator() != NULL) count++;
|
| - if (type_arguments() != NULL) count++;
|
| - return count;
|
| -}
|
| -
|
| -
|
| intptr_t CreateClosureComp::InputCount() const {
|
| // Optional type arguments.
|
| return (type_arguments() == NULL) ? 0 : 1;
|
|
|