diff options
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-i386.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 8d84bab..0718efa 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2015-07-15 H.J. Lu <hongjiu.lu@intel.com> + + * config/tc-i386.c (flag_compress_debug): Replace + COMPRESS_DEBUG_GNU_ZLIB with COMPRESS_DEBUG_GABI_ZLIB. + 2015-07-14 H.J. Lu <hongjiu.lu@intel.com> * as.c (parse_args): Make --compress-debug-sections and diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index 5a1e2b3..2bdb769 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -36,7 +36,7 @@ #ifdef TE_LINUX /* Default to compress debug sections for Linux. */ enum compressed_debug_section_type flag_compress_debug - = COMPRESS_DEBUG_GNU_ZLIB; + = COMPRESS_DEBUG_GABI_ZLIB; #endif #ifndef REGISTER_WARNINGS |