diff options
author | Alan Modra <amodra@gmail.com> | 2020-09-09 08:38:48 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2020-09-09 08:41:28 +0930 |
commit | 47485a31614a79f58a9cbd00e775bec8e201c471 (patch) | |
tree | 9c4390e547f614e221d7eff46f64335fc3cc65f2 /bfd/libbfd.h | |
parent | 3ad6c19423eedf84dfd5ea83bc03933dff8a4579 (diff) | |
download | gdb-47485a31614a79f58a9cbd00e775bec8e201c471.zip gdb-47485a31614a79f58a9cbd00e775bec8e201c471.tar.gz gdb-47485a31614a79f58a9cbd00e775bec8e201c471.tar.bz2 |
Re: MSP430: Support relocations for subtract expressions in .uleb128 directives
Put the prototype where it won't disappear on the next regen of libbfd.h.
* libbfd-in.h (_bfd_write_unsigned_leb128): Declare.
* libbfd.h: Regenerate.
Diffstat (limited to 'bfd/libbfd.h')
-rw-r--r-- | bfd/libbfd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/libbfd.h b/bfd/libbfd.h index 7587e8f..74d7e41 100644 --- a/bfd/libbfd.h +++ b/bfd/libbfd.h @@ -902,7 +902,7 @@ extern bfd_vma _bfd_safe_read_leb128 (bfd *, bfd_byte *, unsigned int *, bfd_boolean, const bfd_byte * const) ATTRIBUTE_HIDDEN; extern bfd_byte * _bfd_write_unsigned_leb128 - (bfd_byte *p, bfd_byte *end, bfd_vma val) ATTRIBUTE_HIDDEN; + (bfd_byte *, bfd_byte *, bfd_vma) ATTRIBUTE_HIDDEN; #if GCC_VERSION >= 7000 #define _bfd_mul_overflow(a, b, res) __builtin_mul_overflow (a, b, res) |