addr2line.c: add explicit casts for clang on 32bit environment

Assigning uint64_t to size_t or uintptr_t caused a build error.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65320 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
mame 2018-10-23 12:38:48 +00:00
Родитель dc2e3f1ecf
Коммит ab20aee573
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -1104,7 +1104,7 @@ debug_info_reader_read_value(DebugInfoReader *reader, uint64_t form, DebugInfoVa
/* stroffsetsptr: debug_str_offsets */
break;
case DW_FORM_exprloc:
v->size = read_uleb128(reader);
v->size = (size_t)read_uleb128(reader);
set_data_value(v, reader->p);
reader->p += v->size;
break;
@ -1350,7 +1350,7 @@ ranges_include(DebugInfoReader *reader, ranges_t *ptr, uint64_t addr)
exit(1);
}
if (ptr->low_pc <= addr && addr <= ptr->high_pc) {
return ptr->low_pc;
return (uintptr_t)ptr->low_pc;
}
}
else if (ptr->ranges_set) {
@ -1372,7 +1372,7 @@ ranges_include(DebugInfoReader *reader, ranges_t *ptr, uint64_t addr)
}
else if (ptr->low_pc_set) {
if (ptr->low_pc == addr) {
return ptr->low_pc;
return (uintptr_t)ptr->low_pc;
}
}
return false;