| Index: runtime/vm/precompiler.cc
|
| diff --git a/runtime/vm/precompiler.cc b/runtime/vm/precompiler.cc
|
| index 16304750a0134f1699f6632778dc8e780b93637c..a9b6e20ff80d660caf70857f0574ab43846677de 100644
|
| --- a/runtime/vm/precompiler.cc
|
| +++ b/runtime/vm/precompiler.cc
|
| @@ -1218,7 +1218,7 @@ RawFunction* Precompiler::CompileStaticInitializer(const Field& field,
|
|
|
| ParsedFunction* parsed_function;
|
| // Check if this field is coming from the Kernel binary.
|
| - if (field.kernel_field() != NULL) {
|
| + if (field.kernel_offset() > 0) {
|
| parsed_function = kernel::ParseStaticFieldInitializer(zone, field);
|
| } else {
|
| parsed_function = Parser::ParseStaticFieldInitializer(field);
|
|
|