diff options
author | Ben Elliston <bje@au.ibm.com> | 2001-06-23 23:02:57 +0000 |
---|---|---|
committer | Ben Elliston <bje@au.ibm.com> | 2001-06-23 23:02:57 +0000 |
commit | a181d81e0c95c9c1858e8716fbec5a5661837433 (patch) | |
tree | be514768dcd1f4fe3759b44c7294991d4d02c537 /gas | |
parent | 2dd627049d915a78ba15b65ab718d54958d115bf (diff) | |
download | gdb-a181d81e0c95c9c1858e8716fbec5a5661837433.zip gdb-a181d81e0c95c9c1858e8716fbec5a5661837433.tar.gz gdb-a181d81e0c95c9c1858e8716fbec5a5661837433.tar.bz2 |
2001-06-24 Ben Elliston <bje@redhat.com>
* config/tc-m88k.c (md_pseudo_table): Properly terminate the table
to allay a possible compiler warning.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-m88k.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index f302eb7..5b6b791 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2001-06-24 Ben Elliston <bje@redhat.com> + + * config/tc-m88k.c (md_pseudo_table): Properly terminate the table + to allay a possible compiler warning. + 2001-06-22 Nick Clifton <nickc@cambridge.redhat.com> * doc/internals.texi (CPU backend): Document md_atof. diff --git a/gas/config/tc-m88k.c b/gas/config/tc-m88k.c index a5842d1..6c46baf 100644 --- a/gas/config/tc-m88k.c +++ b/gas/config/tc-m88k.c @@ -179,7 +179,7 @@ const pseudo_typeS md_pseudo_table[] = /* Force set to be treated as an instruction. */ {"set", NULL, 0}, {".set", s_set, 0}, - {0} + {NULL, NULL, 0} }; void |