| Index: runtime/vm/object.cc
|
| diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
|
| index cbc1d59d5c7584683c601dda2e3e210b2ef8b7b7..7cb1e8af8b68bca5ee21b035fd4341aeb6994a68 100644
|
| --- a/runtime/vm/object.cc
|
| +++ b/runtime/vm/object.cc
|
| @@ -7696,6 +7696,10 @@ bool Field::UpdateGuardedCidAndLength(const Object& value) const {
|
|
|
|
|
| void Field::RecordStore(const Object& value) const {
|
| + if (!FLAG_use_field_guards) {
|
| + return;
|
| + }
|
| +
|
| if (FLAG_trace_field_guards) {
|
| OS::Print("Store %s %s <- %s\n",
|
| ToCString(),
|
|
|