diff options
author | Thomas Schwinge <tschwinge@gnu.org> | 2010-03-15 15:11:13 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2010-03-15 15:11:13 +0000 |
commit | d905c788cf58f2d9b6346fab2d3a53c21fab8adf (patch) | |
tree | 2390bd8501581b1d5f018f479efa6c333e994c22 /gas/dw2gencfi.c | |
parent | 2010-03-15 Thomas Schwinge <thomas@codesourcery.com> (diff) | |
download | binutils-gdb-d905c788cf58f2d9b6346fab2d3a53c21fab8adf.tar.gz binutils-gdb-d905c788cf58f2d9b6346fab2d3a53c21fab8adf.tar.bz2 binutils-gdb-d905c788cf58f2d9b6346fab2d3a53c21fab8adf.zip |
2010-03-15 Thomas Schwinge <thomas@codesourcery.com>
* dw2gencfi.c (output_cie): Consider emitting the S augmentation in all
cases, and not only for .eh_frame.
Diffstat (limited to 'gas/dw2gencfi.c')
-rw-r--r-- | gas/dw2gencfi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/dw2gencfi.c b/gas/dw2gencfi.c index 09171da2965..36bd8d8d1db 100644 --- a/gas/dw2gencfi.c +++ b/gas/dw2gencfi.c @@ -1303,9 +1303,9 @@ output_cie (struct cie_entry *cie, bfd_boolean eh_frame, int align) if (cie->lsda_encoding != DW_EH_PE_omit) out_one ('L'); out_one ('R'); - if (cie->signal_frame) - out_one ('S'); } + if (cie->signal_frame) + out_one ('S'); out_one (0); out_uleb128 (DWARF2_LINE_MIN_INSN_LENGTH); /* Code alignment. */ out_sleb128 (DWARF2_CIE_DATA_ALIGNMENT); /* Data alignment. */ |