Index: runtime/vm/object.cc |
diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc |
index 4852fb8f201e6ae784a6316760f1825a7ed71ff6..3564c2c3c91d2a8d275fef5f64e2917360efe77d 100644 |
--- a/runtime/vm/object.cc |
+++ b/runtime/vm/object.cc |
@@ -4197,6 +4197,11 @@ void Function::set_is_recognized(bool value) const { |
} |
+void Function::set_is_redirecting(bool value) const { |
+ set_kind_tag(RedirectingBit::update(value, raw_ptr()->kind_tag_)); |
+} |
+ |
+ |
void Function::set_is_static(bool value) const { |
set_kind_tag(StaticBit::update(value, raw_ptr()->kind_tag_)); |
} |