diff options
author | Alan Modra <amodra@gmail.com> | 2016-06-14 13:25:21 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2016-06-14 13:25:21 +0930 |
commit | 0aa7f5862e5619194b3956d5bd45b93970635bde (patch) | |
tree | ec56aa7d659a0aeae143cb5795453bf325f40bf2 /ld/ldwrite.c | |
parent | 3860d2b4b72feeef4cf045c6c9907a0476f46f3d (diff) | |
download | binutils-0aa7f5862e5619194b3956d5bd45b93970635bde.zip binutils-0aa7f5862e5619194b3956d5bd45b93970635bde.tar.gz binutils-0aa7f5862e5619194b3956d5bd45b93970635bde.tar.bz2 |
Formatting fixes.
* ldbuildid.c: Formatting.
* ldcref.c: Formatting.
* ldctor.c: Formatting.
* ldemul.c: Formatting.
* ldexp.c: Formatting.
* ldfile.c: Formatting.
* ldlang.c: Formatting.
* ldmain.c: Formatting.
* ldwrite.c: Formatting.
Diffstat (limited to 'ld/ldwrite.c')
-rw-r--r-- | ld/ldwrite.c | 32 |
1 files changed, 14 insertions, 18 deletions
diff --git a/ld/ldwrite.c b/ld/ldwrite.c index 05103be..a7e5789 100644 --- a/ld/ldwrite.c +++ b/ld/ldwrite.c @@ -91,17 +91,17 @@ build_link_order (lang_statement_union_type *statement) big_endian = TRUE; { LANG_FOR_EACH_INPUT_STATEMENT (s) - { - if (s->the_bfd != NULL) - { - if (bfd_little_endian (s->the_bfd)) - { - big_endian = FALSE; - swap = TRUE; - } - break; - } - } + { + if (s->the_bfd != NULL) + { + if (bfd_little_endian (s->the_bfd)) + { + big_endian = FALSE; + swap = TRUE; + } + break; + } + } } } @@ -209,7 +209,7 @@ build_link_order (lang_statement_union_type *statement) link_order->size = bfd_get_reloc_size (rs->howto); link_order->u.reloc.p = (struct bfd_link_order_reloc *) - xmalloc (sizeof (struct bfd_link_order_reloc)); + xmalloc (sizeof (struct bfd_link_order_reloc)); link_order->u.reloc.p->reloc = rs->reloc; link_order->u.reloc.p->addend = rs->addend_value; @@ -409,13 +409,9 @@ ds (asection *s) while (l) { if (l->type == bfd_indirect_link_order) - { - printf ("%8x %s\n", l->offset, l->u.indirect.section->owner->filename); - } + printf ("%8x %s\n", l->offset, l->u.indirect.section->owner->filename); else - { - printf (_("%8x something else\n"), l->offset); - } + printf (_("%8x something else\n"), l->offset); l = l->next; } printf ("\n"); |