Use bool in ld
[deliverable/binutils-gdb.git] / ld / emultempl / vms.em
index 4c869626b9b3a7fda65c68c71225054712390c87..243064f8993d393e976c53c6d065ed9e979ac3e4 100644 (file)
@@ -28,11 +28,11 @@ static void
 gld${EMULATION_NAME}_before_parse (void)
 {
   ldfile_set_output_arch ("${ARCH}", bfd_arch_`echo ${ARCH} | sed -e 's/:.*//'`);
-  input_flags.dynamic = TRUE;
-  config.has_shared = FALSE; /* Not yet.  */
+  input_flags.dynamic = true;
+  config.has_shared = false; /* Not yet.  */
 
   /* For ia64, harmless for alpha.  */
-  link_info.emit_hash = FALSE;
+  link_info.emit_hash = false;
   link_info.spare_dynamic_tags = 0;
 }
 
@@ -50,7 +50,7 @@ gld${EMULATION_NAME}_create_output_section_statements (void)
 /* Try to open a dynamic archive.  This is where we know that VMS
    shared images (dynamic libraries) have an extension of .exe.  */
 
-static bfd_boolean
+static bool
 gld${EMULATION_NAME}_open_dynamic_archive (const char *arch ATTRIBUTE_UNUSED,
                                           search_dirs_type *search,
                                           lang_input_statement_type *entry)
@@ -58,7 +58,7 @@ gld${EMULATION_NAME}_open_dynamic_archive (const char *arch ATTRIBUTE_UNUSED,
   char *string;
 
   if (! entry->flags.maybe_archive || entry->flags.full_name_provided)
-    return FALSE;
+    return false;
 
   string = (char *) xmalloc (strlen (search->name)
                             + strlen (entry->filename)
@@ -69,12 +69,12 @@ gld${EMULATION_NAME}_open_dynamic_archive (const char *arch ATTRIBUTE_UNUSED,
   if (! ldfile_try_open_bfd (string, entry))
     {
       free (string);
-      return FALSE;
+      return false;
     }
 
   entry->filename = string;
 
-  return TRUE;
+  return true;
 }
 
 static int
@@ -152,20 +152,20 @@ gld${EMULATION_NAME}_list_options (FILE *file)
   fprintf (file, _("  --identification <string>          Set the identification of the output\n"));
 }
 
-static bfd_boolean
+static bool
 gld${EMULATION_NAME}_handle_option (int optc)
 {
   switch (optc)
     {
     default:
-      return FALSE;
+      return false;
 
     case OPTION_IDENTIFICATION:
       /* Currently ignored.  */
       break;
     }
 
-  return TRUE;
+  return true;
 }
 
 EOF
This page took 0.033022 seconds and 4 git commands to generate.