Chromium Code Reviews| Index: runtime/vm/raw_object.h |
| diff --git a/runtime/vm/raw_object.h b/runtime/vm/raw_object.h |
| index df2902c53a5755af9e1c4a80222f1569db585e78..f0949b59187ed5fb4b5960d41a79434eb68198bf 100644 |
| --- a/runtime/vm/raw_object.h |
| +++ b/runtime/vm/raw_object.h |
| @@ -1402,7 +1402,7 @@ class RawICData : public RawObject { |
| RawObject** from() { |
| return reinterpret_cast<RawObject**>(&ptr()->owner_); |
| } |
| - RawFunction* owner_; // Parent/calling function of this IC. |
| + RawObject* owner_; // Parent/calling function or original IC of cloned IC. |
| RawString* target_name_; // Name of target function. |
|
zra
2015/12/21 19:31:47
Maybe un-align the rest of these as well.
srdjan
2015/12/21 20:22:49
Done.
|
| RawArray* args_descriptor_; // Arguments descriptor. |
| RawArray* ic_data_; // Contains class-ids, target and count. |