forked from Imagelibrary/binutils-gdb
2010-01-25 Doug Kwan <dougkwan@google.com>
* arm.cc (Arm_exidx_merged_section::do_output_offset): Fix warning due to signed and unsigned comparison on a 32-bit host.
This commit is contained in:
@@ -4587,7 +4587,9 @@ Arm_exidx_merged_section::do_output_offset(
|
||||
|| shndx != this->exidx_input_section_.shndx())
|
||||
return false;
|
||||
|
||||
if (offset < 0 || offset >= this->exidx_input_section_.size())
|
||||
section_offset_type section_size =
|
||||
convert_types<section_offset_type>(this->exidx_input_section_.size());
|
||||
if (offset < 0 || offset >= section_size)
|
||||
// Input offset is out of valid range.
|
||||
*poutput = -1;
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user