Chromium Code Reviews| Index: runtime/vm/raw_object.h |
| =================================================================== |
| --- runtime/vm/raw_object.h (revision 43100) |
| +++ runtime/vm/raw_object.h (working copy) |
| @@ -1023,7 +1023,7 @@ |
| struct PcDescriptorRec { |
| uword pc_offset() const { return pc_offset_; } |
| void set_pc_offset(uword value) { |
| - ASSERT((sizeof(value) == 4) || Utils::IsUint(32, value)); |
| + ASSERT((sizeof(value) == 4) || (value < static_cast<uword>(1) << 32)); |
| pc_offset_ = value; |
| } |