mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-17 21:03:55 +08:00
* language.c (struct op_print unk_op_print_tab): use the enum values
rather naked zeros as initializers. Avoids warnings from ultrix type compilers.
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
Wed Feb 17 13:40:29 1993 K. Richard Pixley (rich@cygnus.com)
|
||||||
|
|
||||||
|
* language.c (struct op_print unk_op_print_tab): use the enum
|
||||||
|
values rather naked zeros as initializers. Avoids warnings from
|
||||||
|
ultrix type compilers.
|
||||||
|
|
||||||
Tue Feb 16 00:53:20 1993 John Gilmore (gnu@cygnus.com)
|
Tue Feb 16 00:53:20 1993 John Gilmore (gnu@cygnus.com)
|
||||||
|
|
||||||
* Makefile.in (VERSION): Roll to 4.7.6.
|
* Makefile.in (VERSION): Roll to 4.7.6.
|
||||||
|
@ -1198,7 +1198,7 @@ unk_lang_val_print (type, valaddr, address, stream, format, deref_ref,
|
|||||||
|
|
||||||
static struct type ** const (unknown_builtin_types[]) = { 0 };
|
static struct type ** const (unknown_builtin_types[]) = { 0 };
|
||||||
static const struct op_print unk_op_print_tab[] = {
|
static const struct op_print unk_op_print_tab[] = {
|
||||||
{NULL, 0, 0, 0}
|
{NULL, OP_NULL, PREC_NULL, 0}
|
||||||
};
|
};
|
||||||
|
|
||||||
const struct language_defn unknown_language_defn = {
|
const struct language_defn unknown_language_defn = {
|
||||||
|
Reference in New Issue
Block a user