aboutsummaryrefslogtreecommitdiff
path: root/gas/config/tc-xgate.c
diff options
context:
space:
mode:
Diffstat (limited to 'gas/config/tc-xgate.c')
-rw-r--r--gas/config/tc-xgate.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/gas/config/tc-xgate.c b/gas/config/tc-xgate.c
index a7b6076..5f5d165 100644
--- a/gas/config/tc-xgate.c
+++ b/gas/config/tc-xgate.c
@@ -196,7 +196,7 @@ size_t md_longopts_size = sizeof (md_longopts);
const char *
md_atof (int type, char *litP, int *sizeP)
{
- return ieee_md_atof (type, litP, sizeP, TRUE);
+ return ieee_md_atof (type, litP, sizeP, true);
}
int
@@ -1292,24 +1292,24 @@ xgate_parse_operand (struct xgate_opcode *opcode,
{
if (((opcode->name[strlen (opcode->name) - 1] == 'l')
&& autoHiLo) || operand.mod == MOD_LOAD_LOW)
- fix_new_exp (frag_now, where, 2, &operand.exp, FALSE,
+ fix_new_exp (frag_now, where, 2, &operand.exp, false,
BFD_RELOC_XGATE_24);
else if (((opcode->name[strlen (opcode->name) - 1]) == 'h'
&& autoHiLo) || operand.mod == MOD_LOAD_HIGH )
- fix_new_exp (frag_now, where, 2, &operand.exp, FALSE,
+ fix_new_exp (frag_now, where, 2, &operand.exp, false,
BFD_RELOC_XGATE_IMM8_HI);
else
as_bad (_("you must use a hi/lo directive or 16-bit macro "
"to load a 16-bit value."));
}
else if (*op_constraint == '5')
- fix_new_exp (frag_now, where, 2, &operand.exp, FALSE,
+ fix_new_exp (frag_now, where, 2, &operand.exp, false,
BFD_RELOC_XGATE_IMM5);
else if (*op_constraint == '4')
- fix_new_exp (frag_now, where, 2, &operand.exp, FALSE,
+ fix_new_exp (frag_now, where, 2, &operand.exp, false,
BFD_RELOC_XGATE_IMM4);
else if (*op_constraint == '3')
- fix_new_exp (frag_now, where, 2, &operand.exp, FALSE,
+ fix_new_exp (frag_now, where, 2, &operand.exp, false,
BFD_RELOC_XGATE_IMM3);
else
as_bad (_(":unknown relocation constraint size"));
@@ -1335,10 +1335,10 @@ xgate_parse_operand (struct xgate_opcode *opcode,
if (operand.exp.X_op != O_register)
{
if (*op_constraint == '9')
- fix_new_exp (frag_now, where, 2, &operand.exp, TRUE,
+ fix_new_exp (frag_now, where, 2, &operand.exp, true,
BFD_RELOC_XGATE_PCREL_9);
else if (*op_constraint == 'a')
- fix_new_exp (frag_now, where, 2, &operand.exp, TRUE,
+ fix_new_exp (frag_now, where, 2, &operand.exp, true,
BFD_RELOC_XGATE_PCREL_10);
}
else