diff options
Diffstat (limited to 'bfd/cpu-m32c.c')
-rw-r--r-- | bfd/cpu-m32c.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bfd/cpu-m32c.c b/bfd/cpu-m32c.c index 0fd4067..85436b8 100644 --- a/bfd/cpu-m32c.c +++ b/bfd/cpu-m32c.c @@ -25,12 +25,12 @@ /* Like bfd_default_scan but if the string is just "m32c" then skip the m16c architecture. */ -static bfd_boolean +static bool m32c_scan (const bfd_arch_info_type * info, const char * string) { if (strcmp (string, "m32c") == 0 && info->mach == bfd_mach_m16c) - return FALSE; + return false; return bfd_default_scan (info, string); } @@ -40,8 +40,8 @@ m32c_scan (const bfd_arch_info_type * info, const char * string) bfd_default_compatible, m32c_scan, bfd_arch_default_fill, next, 0 } static const bfd_arch_info_type arch_info_struct = - N (bfd_mach_m32c, "m32c", 3, FALSE, NULL); + N (bfd_mach_m32c, "m32c", 3, false, NULL); const bfd_arch_info_type bfd_m32c_arch = - N (bfd_mach_m16c, "m16c", 4, TRUE, &arch_info_struct); + N (bfd_mach_m16c, "m16c", 4, true, &arch_info_struct); |