]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - ld/emultempl/alphaelf.em
Use bool in ld
[thirdparty/binutils-gdb.git] / ld / emultempl / alphaelf.em
index 7fed9968dd78f45dc95ab87f236d4a8e867e18e2..0e2416cd69f97e68d1501627914e86e4295e4834 100644 (file)
@@ -28,9 +28,9 @@ fragment <<EOF
 #include "elf/alpha.h"
 #include "elf-bfd.h"
 
-static bfd_boolean limit_32bit;
+static bool limit_32bit;
 
-extern bfd_boolean elf64_alpha_use_secureplt;
+extern bool elf64_alpha_use_secureplt;
 
 
 /* Set the start address as in the Tru64 ld.  */
@@ -138,10 +138,10 @@ PARSE_AND_LIST_ARGS_CASES='
       limit_32bit = 1;
       break;
     case OPTION_SECUREPLT:
-      elf64_alpha_use_secureplt = TRUE;
+      elf64_alpha_use_secureplt = true;
       break;
     case OPTION_NO_SECUREPLT:
-      elf64_alpha_use_secureplt = FALSE;
+      elf64_alpha_use_secureplt = false;
       break;
 '