diff options
author | DJ Delorie <dj@redhat.com> | 2014-01-24 14:43:58 -0500 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2014-01-24 14:43:58 -0500 |
commit | 34b822e3bc707d31e8b8f07cfe264845bc3c6697 (patch) | |
tree | fd8a0f2278f42e1f3a26fd756dcf3528cc7669f0 /gas/ChangeLog | |
parent | a5262f834a754dcc37db768c1ee24d7ae52247e5 (diff) | |
download | gdb-34b822e3bc707d31e8b8f07cfe264845bc3c6697.zip gdb-34b822e3bc707d31e8b8f07cfe264845bc3c6697.tar.gz gdb-34b822e3bc707d31e8b8f07cfe264845bc3c6697.tar.bz2 |
Add .data and .bss refsym symbols
For each object, if it has a nonempty .data or .bss section,
emit a symbol that could cause the startup code to selectively
link in the code to initialize those sections.
* config/tc-msp430.c (msp430_section): Always flag data sections,
regardless of -md.
(msp430_frob_section): New. Make sure all sections are noticed if
they have content.
(msp430_lcomm): New. Flag bss if .lcomm is seen.
(msp430_comm): New. Likewise.
(md_pseudo_table): Add them.
* config/tc-msp430.h (msp430_frob_section): Declare.
(tc_frob_section): Define.
Diffstat (limited to 'gas/ChangeLog')
-rw-r--r-- | gas/ChangeLog | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 8177db2..99bc518 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,15 @@ +2014-01-24 DJ Delorie <dj@redhat.com> + + * config/tc-msp430.c (msp430_section): Always flag data sections, + regardless of -md. + (msp430_frob_section): New. Make sure all sections are noticed if + they have content. + (msp430_lcomm): New. Flag bss if .lcomm is seen. + (msp430_comm): New. Likewise. + (md_pseudo_table): Add them. + * config/tc-msp430.h (msp430_frob_section): Declare. + (tc_frob_section): Define. + 2014-01-23 Nick Clifton <nickc@redhat.com> * config/tc-msp430.c (show_mcu_list): Delete. |