diff options
author | Alan Modra <amodra@gmail.com> | 2012-10-01 06:46:16 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2012-10-01 06:46:16 +0000 |
commit | 4fc0b46e62cec696390862c9eb7d80b35d24f0f8 (patch) | |
tree | 9927f38c78bba69ca6f74476a2543a45e804d655 /gas | |
parent | ed8960ecbc0ce624e1e30f0cf0abaeedf7a4938f (diff) | |
download | gdb-4fc0b46e62cec696390862c9eb7d80b35d24f0f8.zip gdb-4fc0b46e62cec696390862c9eb7d80b35d24f0f8.tar.gz gdb-4fc0b46e62cec696390862c9eb7d80b35d24f0f8.tar.bz2 |
* write.c (chain_frchains_together_1): Reorder assertion to avoid
uninit warning.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/write.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 246c02f..3e77783 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2012-10-01 Alan Modra <amodra@gmail.com> + + * write.c (chain_frchains_together_1): Reorder assertion to avoid + uninit warning. + 2012-09-23 Richard Sandiford <rdsandiford@googlemail.com> * config/tc-mips.h (TC_FORCE_RELOCATION): Remove comment. diff --git a/gas/write.c b/gas/write.c index a467147..56ebb6c 100644 --- a/gas/write.c +++ b/gas/write.c @@ -406,8 +406,8 @@ chain_frchains_together_1 (segT section, struct frchain *frchp) prev_fix = frchp->fix_tail; } } - gas_assert (prev_frag->fr_type != 0); - gas_assert (prev_frag != &dummy); + gas_assert (prev_frag != &dummy + && prev_frag->fr_type != 0); prev_frag->fr_next = 0; return prev_frag; } |