| Index: bfd/cpu-mt.c
|
| diff --git a/bfd/cpu-mt.c b/bfd/cpu-mt.c
|
| index 519871d424997fa6657714a2d005177d63f241f1..0ec10c865244ceae63cf74fd4d87efc5e64d42a7 100644
|
| --- a/bfd/cpu-mt.c
|
| +++ b/bfd/cpu-mt.c
|
| @@ -36,6 +36,7 @@ const bfd_arch_info_type arch_info_struct[] =
|
| FALSE, /* The default ? */
|
| bfd_default_compatible, /* Architecture comparison fn. */
|
| bfd_default_scan, /* String to architecture convert fn. */
|
| + bfd_arch_default_fill, /* Default fill. */
|
| &arch_info_struct[1] /* Next in list. */
|
| },
|
| {
|
| @@ -50,6 +51,7 @@ const bfd_arch_info_type arch_info_struct[] =
|
| FALSE, /* The default ? */
|
| bfd_default_compatible, /* Architecture comparison fn. */
|
| bfd_default_scan, /* String to architecture convert fn. */
|
| + bfd_arch_default_fill, /* Default fill. */
|
| NULL /* Next in list. */
|
| },
|
| };
|
| @@ -67,6 +69,7 @@ const bfd_arch_info_type bfd_mt_arch =
|
| TRUE, /* The default ? */
|
| bfd_default_compatible, /* Architecture comparison fn. */
|
| bfd_default_scan, /* String to architecture convert fn. */
|
| + bfd_arch_default_fill, /* Default fill. */
|
| &arch_info_struct[0] /* Next in list. */
|
| };
|
|
|
|
|