aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej W. Rozycki <macro@mips.com>2018-06-21 21:40:57 +0100
committerMaciej W. Rozycki <macro@mips.com>2018-06-21 21:40:57 +0100
commit1ced1a5f108fd0a0c88d2298dbdd2dd2a2ee38f0 (patch)
treed647a7905d35845c89949a2c2cd31888ee0c5889
parent334cd8a780840d6aee86790fe2fe5f02fe56edf6 (diff)
downloadfsf-binutils-gdb-1ced1a5f108fd0a0c88d2298dbdd2dd2a2ee38f0.zip
fsf-binutils-gdb-1ced1a5f108fd0a0c88d2298dbdd2dd2a2ee38f0.tar.gz
fsf-binutils-gdb-1ced1a5f108fd0a0c88d2298dbdd2dd2a2ee38f0.tar.bz2
MIPS/BFD: Correct formatting of compact EH backend methods
Correct the formatting of `_bfd_mips_elf_compact_eh_encoding' and `_bfd_mips_elf_cant_unwind_opcode' definitions which extend beyond 79 columns. bfd/ * elfxx-mips.c (_bfd_mips_elf_compact_eh_encoding) (_bfd_mips_elf_cant_unwind_opcode): Correct formatting.
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/elfxx-mips.c6
2 files changed, 9 insertions, 2 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index f56ddf9..f36d7fe 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,5 +1,10 @@
2018-06-21 Maciej W. Rozycki <macro@mips.com>
+ * elfxx-mips.c (_bfd_mips_elf_compact_eh_encoding)
+ (_bfd_mips_elf_cant_unwind_opcode): Correct formatting.
+
+2018-06-21 Maciej W. Rozycki <macro@mips.com>
+
* elfxx-mips.c (_bfd_mips_post_process_headers): Keep
EI_ABIVERSION setting together.
diff --git a/bfd/elfxx-mips.c b/bfd/elfxx-mips.c
index 0b0084c..3adfead 100644
--- a/bfd/elfxx-mips.c
+++ b/bfd/elfxx-mips.c
@@ -16266,7 +16266,8 @@ _bfd_mips_post_process_headers (bfd *abfd, struct bfd_link_info *link_info)
}
int
-_bfd_mips_elf_compact_eh_encoding (struct bfd_link_info *link_info ATTRIBUTE_UNUSED)
+_bfd_mips_elf_compact_eh_encoding
+ (struct bfd_link_info *link_info ATTRIBUTE_UNUSED)
{
return DW_EH_PE_pcrel | DW_EH_PE_sdata4;
}
@@ -16274,7 +16275,8 @@ _bfd_mips_elf_compact_eh_encoding (struct bfd_link_info *link_info ATTRIBUTE_UNU
/* Return the opcode for can't unwind. */
int
-_bfd_mips_elf_cant_unwind_opcode (struct bfd_link_info *link_info ATTRIBUTE_UNUSED)
+_bfd_mips_elf_cant_unwind_opcode
+ (struct bfd_link_info *link_info ATTRIBUTE_UNUSED)
{
return COMPACT_EH_CANT_UNWIND_OPCODE;
}