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:
Doug Kwan 2010-01-25 17:30:29 +00:00
parent 6bcc772dec
commit c7f3c37113
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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.
2010-01-22 Doug Kwan <dougkwan@google.com>
* arm.cc (Target_arm::do_relax): Record an output section for section

View File

@ -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