Chromium Code Reviews| Index: runtime/vm/object.cc |
| =================================================================== |
| --- runtime/vm/object.cc (revision 25620) |
| +++ runtime/vm/object.cc (working copy) |
| @@ -3968,6 +3968,11 @@ |
| } |
| +void Function::set_needs_far_branches(bool value) const { |
| + set_kind_tag(FarBranchesBit::update(value, raw_ptr()->kind_tag_)); |
| +} |
| + |
| + |
| void Function::set_is_static(bool value) const { |
| set_kind_tag(StaticBit::update(value, raw_ptr()->kind_tag_)); |
| } |