Use bool in ld
[deliverable/binutils-gdb.git] / ld / emultempl / m68hc1xelf.em
index 212db7c4e107464e0a3af381fc4d6c944130331d..480d1b7d8f33f5299633d8e1c835a515118f8d6c 100644 (file)
@@ -105,7 +105,7 @@ m68hc11_elf_${EMULATION_NAME}_before_allocation (void)
 
      But for 68HC11 this is board specific.  The definition of such
      memory region allows one to control how this paged memory is accessed.  */
-  region = lang_memory_region_lookup (bank_window_name, FALSE);
+  region = lang_memory_region_lookup (bank_window_name, false);
 
   /* Check the length to see if it was defined in the script.  */
   if (region->length != 0)
@@ -175,11 +175,11 @@ struct hook_stub_info
 
 /* Traverse the linker tree to find the spot where the stub goes.  */
 
-static bfd_boolean
+static bool
 hook_in_stub (struct hook_stub_info *info, lang_statement_union_type **lp)
 {
   lang_statement_union_type *l;
-  bfd_boolean ret;
+  bool ret;
 
   for (; (l = *lp) != NULL; lp = &l->header.next)
     {
@@ -219,7 +219,7 @@ hook_in_stub (struct hook_stub_info *info, lang_statement_union_type **lp)
                 before its associated input section.  */
              *lp = info->add.head;
              *(info->add.tail) = l;
-             return TRUE;
+             return true;
            }
          break;
 
@@ -240,7 +240,7 @@ hook_in_stub (struct hook_stub_info *info, lang_statement_union_type **lp)
          break;
        }
     }
-  return FALSE;
+  return false;
 }
 
 
This page took 0.023756 seconds and 4 git commands to generate.