diff options
author | Nick Clifton <nickc@redhat.com> | 2015-04-28 11:22:57 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2015-04-28 11:22:57 +0100 |
commit | da7119c99c41f60cb178b0b9729d9f7880f33c86 (patch) | |
tree | 6cf1b9b9764d7474ad13b3de12316fa5c557aaff /gas/cond.c | |
parent | 2631b16a570626a276f1ce6528ff1cd2cc90ce76 (diff) | |
download | gdb-da7119c99c41f60cb178b0b9729d9f7880f33c86.zip gdb-da7119c99c41f60cb178b0b9729d9f7880f33c86.tar.gz gdb-da7119c99c41f60cb178b0b9729d9f7880f33c86.tar.bz2 |
Fix compile time warnings about a local variable being used before it is set.
PR 18313
* cond.c (s_if): Stop compile time warning about stopc being used
before it is set.
(s_ifc): Likewise.
Diffstat (limited to 'gas/cond.c')
-rw-r--r-- | gas/cond.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -128,7 +128,7 @@ s_if (int arg) struct conditional_frame cframe; int t; char *stop = NULL; - char stopc; + char stopc = 0; if (flag_mri) stop = mri_comment_field (&stopc); @@ -261,7 +261,7 @@ void s_ifc (int arg) { char *stop = NULL; - char stopc; + char stopc = 0; char *s1, *s2; int len1, len2; int res; |