| Index: runtime/vm/profiler.cc
|
| diff --git a/runtime/vm/profiler.cc b/runtime/vm/profiler.cc
|
| index aba94b69bca4e16688ad5c2a62659db992e5c3e5..b416aeb5095f7de3cee46e1c4e3a521c57c5e33a 100644
|
| --- a/runtime/vm/profiler.cc
|
| +++ b/runtime/vm/profiler.cc
|
| @@ -1330,7 +1330,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);
|
|
|