diff options
author | Doug Kwan <dougkwan@google.com> | 2010-01-25 17:30:29 +0000 |
---|---|---|
committer | Doug Kwan <dougkwan@google.com> | 2010-01-25 17:30:29 +0000 |
commit | c7f3c371135283f5376966704680c4f712b8c8a9 (patch) | |
tree | 5f13656153eb886bce5bfaab0275b7e51903d3e9 /gold/arm.cc | |
parent | 6bcc772dec145e131137cf8cbc3786f3c4d96003 (diff) | |
download | gdb-c7f3c371135283f5376966704680c4f712b8c8a9.zip gdb-c7f3c371135283f5376966704680c4f712b8c8a9.tar.gz gdb-c7f3c371135283f5376966704680c4f712b8c8a9.tar.bz2 |
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.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gold/arm.cc b/gold/arm.cc index 03f59f6..36ff359 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 |