| Index: runtime/vm/code_generator.cc
|
| diff --git a/runtime/vm/code_generator.cc b/runtime/vm/code_generator.cc
|
| index 24c8c8cd26d05ba62af8848128b1b317f629c828..a45853dc8887a6503f01866ecbd55b88ffcb2293 100644
|
| --- a/runtime/vm/code_generator.cc
|
| +++ b/runtime/vm/code_generator.cc
|
| @@ -205,7 +205,8 @@ DEFINE_RUNTIME_ENTRY(InstantiateType, 2) {
|
| ASSERT(!type.IsNull() && !type.IsInstantiated());
|
| ASSERT(instantiator.IsNull() || instantiator.IsInstantiated());
|
| Error& bound_error = Error::Handle();
|
| - type = type.InstantiateFrom(instantiator, &bound_error, NULL, Heap::kOld);
|
| + type =
|
| + type.InstantiateFrom(instantiator, &bound_error, NULL, NULL, Heap::kOld);
|
| if (!bound_error.IsNull()) {
|
| // Throw a dynamic type error.
|
| const TokenPosition location = GetCallerLocation();
|
|
|