summaryrefslogtreecommitdiff
path: root/gas/write.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2012-10-01 06:46:15 +0000
committerAlan Modra <amodra@bigpond.net.au>2012-10-01 06:46:15 +0000
commitfec4394d16b8af9ce9b40d5a2974bdc6b70c9d6b (patch)
treee8394ca627b4110e9b9e05dd6e62b77fe7a281f8 /gas/write.c
parentda72436797450a5858e10815e1c5dc230ad7f1ea (diff)
downloadbinutils-redhat-fec4394d16b8af9ce9b40d5a2974bdc6b70c9d6b.tar.gz
* write.c (chain_frchains_together_1): Reorder assertion to avoid
uninit warning.
Diffstat (limited to 'gas/write.c')
-rw-r--r--gas/write.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/write.c b/gas/write.c
index a4671475af..56ebb6c565 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;
}