| Index: runtime/vm/profiler.cc
|
| diff --git a/runtime/vm/profiler.cc b/runtime/vm/profiler.cc
|
| index 2e1d10b4a32ba9ff45afa3667183af154ffe2920..be9ce360a77037a70c37ce70c4c129833e07aeb5 100644
|
| --- a/runtime/vm/profiler.cc
|
| +++ b/runtime/vm/profiler.cc
|
| @@ -1321,7 +1321,7 @@ class CodeLookupTableBuilder : public ObjectVisitor {
|
| ~CodeLookupTableBuilder() {}
|
|
|
| void VisitObject(RawObject* raw_obj) {
|
| - uword tags = raw_obj->ptr()->tags_;
|
| + uint32_t tags = raw_obj->ptr()->tags_;
|
| if (RawObject::ClassIdTag::decode(tags) == kCodeCid) {
|
| RawCode* raw_code = reinterpret_cast<RawCode*>(raw_obj);
|
| const Code& code = Code::Handle(raw_code);
|
|
|