diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2015-07-15 07:31:55 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2015-07-15 07:31:55 -0700 |
commit | 189ebcf9150ee935fd5f9718a3abf02084dde02d (patch) | |
tree | ec332374f56182dbf3d8e4606af0efc8910f5c6b /gas/config | |
parent | e57bb7a0313b66f8be8b380f5328bbb45fbc2fbf (diff) | |
download | gdb-189ebcf9150ee935fd5f9718a3abf02084dde02d.zip gdb-189ebcf9150ee935fd5f9718a3abf02084dde02d.tar.gz gdb-189ebcf9150ee935fd5f9718a3abf02084dde02d.tar.bz2 |
Make x86 Linux assembler default to gABI compliant
The default compression is gABI compliant now. This patch makes the
x86 Linux assembler default to gABI compliant.
* config/tc-i386.c (flag_compress_debug): Replace
COMPRESS_DEBUG_GNU_ZLIB with COMPRESS_DEBUG_GABI_ZLIB.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-i386.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |