summaryrefslogtreecommitdiffstats
path: root/gold/arm.cc
diff options
context:
space:
mode:
authorDoug Kwan <dougkwan@google.com>2010-01-25 17:30:29 +0000
committerDoug Kwan <dougkwan@google.com>2010-01-25 17:30:29 +0000
commitc7f3c371135283f5376966704680c4f712b8c8a9 (patch)
tree5f13656153eb886bce5bfaab0275b7e51903d3e9 /gold/arm.cc
parent6bcc772dec145e131137cf8cbc3786f3c4d96003 (diff)
downloadppe42-binutils-c7f3c371135283f5376966704680c4f712b8c8a9.tar.gz
ppe42-binutils-c7f3c371135283f5376966704680c4f712b8c8a9.zip
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.
Diffstat (limited to 'gold/arm.cc')
-rw-r--r--gold/arm.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/gold/arm.cc b/gold/arm.cc
index 03f59f6975..36ff359b21 100644
--- a/gold/arm.cc
+++ b/gold/arm.cc
@@ -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
OpenPOWER on IntegriCloud