aboutsummaryrefslogtreecommitdiff
path: root/ld/emultempl/alphaelf.em
diff options
context:
space:
mode:
Diffstat (limited to 'ld/emultempl/alphaelf.em')
-rw-r--r--ld/emultempl/alphaelf.em8
1 files changed, 4 insertions, 4 deletions
diff --git a/ld/emultempl/alphaelf.em b/ld/emultempl/alphaelf.em
index 7fed996..0e2416c 100644
--- a/ld/emultempl/alphaelf.em
+++ b/ld/emultempl/alphaelf.em
@@ -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;
'