aboutsummaryrefslogtreecommitdiff
path: root/gas/config
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@acm.org>2007-04-02 20:05:47 +0000
committerBob Wilson <bob.wilson@acm.org>2007-04-02 20:05:47 +0000
commita3582eee7b5c4f5da570a558661d1b4b159ffa5a (patch)
tree196f87275d2ee0b2a56072db3418a458577f5eb6 /gas/config
parent7b60f4730cf663acefd4145fe90ae6018ce1f2ba (diff)
downloadgdb-a3582eee7b5c4f5da570a558661d1b4b159ffa5a.zip
gdb-a3582eee7b5c4f5da570a558661d1b4b159ffa5a.tar.gz
gdb-a3582eee7b5c4f5da570a558661d1b4b159ffa5a.tar.bz2
* config/tc-xtensa.c (xtensa_flush_pending_output): Check
outputting_stabs_line_debug.
Diffstat (limited to 'gas/config')
-rw-r--r--gas/config/tc-xtensa.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/gas/config/tc-xtensa.c b/gas/config/tc-xtensa.c
index e8877ed..ca0db1d 100644
--- a/gas/config/tc-xtensa.c
+++ b/gas/config/tc-xtensa.c
@@ -5093,6 +5093,15 @@ xtensa_unrecognized_line (int ch)
void
xtensa_flush_pending_output (void)
{
+ /* This line fixes a bug where automatically generated gstabs info
+ separates a function label from its entry instruction, ending up
+ with the literal position between the function label and the entry
+ instruction and crashing code. It only happens with --gstabs and
+ --text-section-literals, and when several other obscure relaxation
+ conditions are met. */
+ if (outputting_stabs_line_debug)
+ return;
+
if (cur_vinsn.inside_bundle)
as_bad (_("missing closing brace"));