| Index: runtime/vm/profiler.cc
|
| diff --git a/runtime/vm/profiler.cc b/runtime/vm/profiler.cc
|
| index 6eaca60e7084d8d77263a15ccd48d9581818e10e..a7c3f0e9ee78cfa3e08659766c16c0674659b122 100644
|
| --- a/runtime/vm/profiler.cc
|
| +++ b/runtime/vm/profiler.cc
|
| @@ -1322,7 +1322,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);
|
|
|