diff options
author | Mark Mitchell <mark@codesourcery.com> | 1999-08-03 06:06:47 +0000 |
---|---|---|
committer | Mark Mitchell <mark@codesourcery.com> | 1999-08-03 06:06:47 +0000 |
commit | 6d197c86025f1a733c598cd4191cfb3f8b6d26e3 (patch) | |
tree | 53df44113e83725876ac71ece6b4384f9859b6ec /bfd/elf32-mips.c | |
parent | 40c0ae6773a4f632f920931a9ce2631b82ced212 (diff) | |
download | gdb-6d197c86025f1a733c598cd4191cfb3f8b6d26e3.tar.gz |
Fix typo
Diffstat (limited to 'bfd/elf32-mips.c')
-rw-r--r-- | bfd/elf32-mips.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/elf32-mips.c b/bfd/elf32-mips.c index b4e718984e8..945d3a5afee 100644 --- a/bfd/elf32-mips.c +++ b/bfd/elf32-mips.c @@ -6556,7 +6556,7 @@ _bfd_mips_elf_relocate_section (output_bfd, info, input_bfd, input_section, || r_type == R_MIPS16_26) /* The addend is stored without its two least significant bits (which are always zero.) */ - addend << 2; + addend <<= 2; } else addend = rel->r_addend; |