diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2015-06-28 06:30:10 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2015-06-28 06:30:10 -0700 |
commit | ee0c0c503deffb7baf900ac8e092b18bf8c1528a (patch) | |
tree | 96f56c23793938b48104907000664f0eb6294a94 /bfd/bfd-in.h | |
parent | e44fbadbede56bf42896c2b3214a056cf20f131e (diff) | |
download | gdb-ee0c0c503deffb7baf900ac8e092b18bf8c1528a.zip gdb-ee0c0c503deffb7baf900ac8e092b18bf8c1528a.tar.gz gdb-ee0c0c503deffb7baf900ac8e092b18bf8c1528a.tar.bz2 |
Remove COMPRESS_DEBUG_ZLIB
COMPRESS_DEBUG_ZLIB isn't needed. This patch removes COMPRESS_DEBUG_ZLIB
and replace COMPRESS_DEBUG_ZLIB with COMPRESS_DEBUG_GNU_ZLIB.
bfd/
* bfd-in.h (compressed_debug_section_type): Remove
COMPRESS_DEBUG_ZLIB.
* bfd-in2.h : Regenerated.
gas/
* as.c (parse_args): Replace COMPRESS_DEBUG_ZLIB with
COMPRESS_DEBUG_GNU_ZLIB.
* config/tc-i386.c (flag_compress_debug): Likewise.
ld/
* emultempl/elf32.em (gld${EMULATION_NAME}_handle_option):
Replace COMPRESS_DEBUG_ZLIB with COMPRESS_DEBUG_GNU_ZLIB.
Diffstat (limited to 'bfd/bfd-in.h')
-rw-r--r-- | bfd/bfd-in.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/bfd/bfd-in.h b/bfd/bfd-in.h index 2e324cd..ae99d1e 100644 --- a/bfd/bfd-in.h +++ b/bfd/bfd-in.h @@ -443,9 +443,8 @@ enum compressed_debug_section_type { COMPRESS_DEBUG_NONE = 0, COMPRESS_DEBUG = 1 << 0, - COMPRESS_DEBUG_ZLIB = COMPRESS_DEBUG | 1 << 1, - COMPRESS_DEBUG_GNU_ZLIB = COMPRESS_DEBUG | 1 << 2, - COMPRESS_DEBUG_GABI_ZLIB = COMPRESS_DEBUG | 1 << 3 + COMPRESS_DEBUG_GNU_ZLIB = COMPRESS_DEBUG | 1 << 1, + COMPRESS_DEBUG_GABI_ZLIB = COMPRESS_DEBUG | 1 << 2 }; /* This structure is used to keep track of stabs in sections |