diff options
author | Hans-Peter Nilsson <hp@axis.com> | 2005-10-28 00:29:44 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@axis.com> | 2005-10-28 00:29:44 +0000 |
commit | b2efcd36528464df78f6ffdde4be819cf70ac393 (patch) | |
tree | 315d9a21c353e0870a594faa599976d3c6920c46 /bfd/elf32-cris.c | |
parent | 8559470fe507829e1dab7a990e669946b71e03af (diff) | |
download | gdb-b2efcd36528464df78f6ffdde4be819cf70ac393.zip gdb-b2efcd36528464df78f6ffdde4be819cf70ac393.tar.gz gdb-b2efcd36528464df78f6ffdde4be819cf70ac393.tar.bz2 |
PR ld/1567
* elf32-cris.c (cris_elf_howto_table) <R_CRIS_32>: Set
complain_on_overflow field to complain_overflow_dont.
Diffstat (limited to 'bfd/elf32-cris.c')
-rw-r--r-- | bfd/elf32-cris.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/bfd/elf32-cris.c b/bfd/elf32-cris.c index 4580bea..06865dc 100644 --- a/bfd/elf32-cris.c +++ b/bfd/elf32-cris.c @@ -156,7 +156,12 @@ static reloc_howto_type cris_elf_howto_table [] = 32, /* bitsize */ FALSE, /* pc_relative */ 0, /* bitpos */ - complain_overflow_bitfield, /* complain_on_overflow */ + /* We don't want overflow complaints for 64-bit vma builds + for e.g. sym+0x40000000 (or actually sym-0xc0000000 in + 32-bit ELF) where sym=0xc0001234. + Don't do this for the PIC relocs, as we don't expect to + see them with large offsets. */ + complain_overflow_dont, /* complain_on_overflow */ bfd_elf_generic_reloc, /* special_function */ "R_CRIS_32", /* name */ FALSE, /* partial_inplace */ |