diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2015-04-09 12:48:49 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2015-04-09 12:48:49 -0700 |
commit | 18ece1defb99cf50dc7769444e3394c26329d497 (patch) | |
tree | 5ce2f72415c68a24d508515dd7e45f8eef117d3b /bfd | |
parent | 4b5708f5d9c229e07cdab66e863276ff22d47e39 (diff) | |
download | gdb-18ece1defb99cf50dc7769444e3394c26329d497.zip gdb-18ece1defb99cf50dc7769444e3394c26329d497.tar.gz gdb-18ece1defb99cf50dc7769444e3394c26329d497.tar.bz2 |
Update comments in compress.c
* compress.c (bfd_compress_section_contents): Update comments.
(bfd_init_section_decompress_status): Likewise.
(bfd_init_section_compress_status): Likewise.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 6 | ||||
-rw-r--r-- | bfd/compress.c | 9 |
2 files changed, 9 insertions, 6 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 47e5024..95cf8d7 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,5 +1,11 @@ 2015-04-09 H.J. Lu <hongjiu.lu@intel.com> + * compress.c (bfd_compress_section_contents): Update comments. + (bfd_init_section_decompress_status): Likewise. + (bfd_init_section_compress_status): Likewise. + +2015-04-09 H.J. Lu <hongjiu.lu@intel.com> + * elfxx-target.h (TARGET_BIG_SYM): Add BFD_COMPRESS_GABI to object_flags. (TARGET_LITTLE_SYM): Likewise. diff --git a/bfd/compress.c b/bfd/compress.c index 17b24e8..7945344 100644 --- a/bfd/compress.c +++ b/bfd/compress.c @@ -64,8 +64,7 @@ decompress_contents (bfd_byte *compressed_buffer, /* Compress data of the size specified in @var{uncompressed_size} and pointed to by @var{uncompressed_buffer} using zlib and store as the contents field. This function assumes the contents - field was allocated using bfd_malloc() or equivalent. If zlib - is not installed on this machine, the input is unmodified. + field was allocated using bfd_malloc() or equivalent. Return the uncompressed size if the full section contents is compressed successfully. Otherwise return 0. */ @@ -449,8 +448,7 @@ DESCRIPTION DECOMPRESS_SECTION_SIZED. Return @code{FALSE} if the section is not a valid compressed - section or zlib is not installed on this machine. Otherwise, - return @code{TRUE}. + section. Otherwise, return @code{TRUE}. */ bfd_boolean @@ -511,8 +509,7 @@ DESCRIPTION compressed size and set compress_status to COMPRESS_SECTION_DONE. Return @code{FALSE} if the section is not a valid compressed - section or zlib is not installed on this machine. Otherwise, - return @code{TRUE}. + section. Otherwise, return @code{TRUE}. */ bfd_boolean |