From 56b3aa508cdbabddd4f46357c8382fe7dca35249 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Tue, 10 Jan 2023 20:28:18 +1030 Subject: Re: Move bfd_init to bfd.c Commit b1c95bc4dd73 resulted in ...bfd.texi:246: @include: could not find init.texi which went unnoticed due to not building in a clean directory. This fixes the problem by moving bfd_init earlier, giving it a doc node, and stitching the nodes back together. * bfd.c (bfd_init): Move earlier. Give it a doc inode. Adjust other inodes to suit. * doc/bfd.texi: Don't include init.texi. Adjust nodes to suit. --- bfd/bfd.c | 69 +++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 36 insertions(+), 33 deletions(-) (limited to 'bfd/bfd.c') diff --git a/bfd/bfd.c b/bfd/bfd.c index 1d1c449..c59e31d 100644 --- a/bfd/bfd.c +++ b/bfd/bfd.c @@ -643,7 +643,7 @@ CODE_FRAGMENT /* INODE -Error reporting, Miscellaneous, typedef bfd, BFD front end +Error reporting, Initialization, typedef bfd, BFD front end SECTION Error reporting @@ -1628,10 +1628,44 @@ bfd_set_assert_handler (bfd_assert_handler_type pnew) _bfd_assert_handler = pnew; return pold; } + +/* +INODE +Initialization, Miscellaneous, Error reporting, BFD front end + +FUNCTION + bfd_init + +SYNOPSIS + unsigned int bfd_init (void); + +DESCRIPTION + This routine must be called before any other BFD function to + initialize magical internal data structures. + Returns a magic number, which may be used to check + that the bfd library is configured as expected by users. + +.{* Value returned by bfd_init. *} +.#define BFD_INIT_MAGIC (sizeof (struct bfd_section)) +. +*/ + +unsigned int +bfd_init (void) +{ + bfd_error = bfd_error_no_error; + input_bfd = NULL; + input_error = bfd_error_no_error; + _bfd_error_program_name = NULL; + _bfd_error_internal = error_handler_fprintf; + _bfd_assert_handler = _bfd_default_assert_handler; + + return BFD_INIT_MAGIC; +} /* INODE -Miscellaneous, Memory Usage, Error reporting, BFD front end +Miscellaneous, Memory Usage, Initialization, BFD front end SECTION Miscellaneous @@ -2605,34 +2639,3 @@ _bfd_get_link_info (bfd *abfd) return elf_link_info (abfd); } - -/* -FUNCTION - bfd_init - -SYNOPSIS - unsigned int bfd_init (void); - -DESCRIPTION - This routine must be called before any other BFD function to - initialize magical internal data structures. - Returns a magic number, which may be used to check - that the bfd library is configured as expected by users. - -.{* Value returned by bfd_init. *} -.#define BFD_INIT_MAGIC (sizeof (struct bfd_section)) -. -*/ - -unsigned int -bfd_init (void) -{ - bfd_error = bfd_error_no_error; - input_bfd = NULL; - input_error = bfd_error_no_error; - _bfd_error_program_name = NULL; - _bfd_error_internal = error_handler_fprintf; - _bfd_assert_handler = _bfd_default_assert_handler; - - return BFD_INIT_MAGIC; -} -- cgit v1.1