diff options
Diffstat (limited to 'gas/config/tc-mn10200.c')
-rw-r--r-- | gas/config/tc-mn10200.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gas/config/tc-mn10200.c b/gas/config/tc-mn10200.c index 93e458c..6323e54 100644 --- a/gas/config/tc-mn10200.c +++ b/gas/config/tc-mn10200.c @@ -172,7 +172,7 @@ reg_name_search (const struct reg_name *regs, Input_line_pointer->(next non-blank) char after operand, or is in its original state. */ -static bfd_boolean +static bool data_register_name (expressionS *expressionP) { int reg_number; @@ -198,12 +198,12 @@ data_register_name (expressionS *expressionP) expressionP->X_add_symbol = NULL; expressionP->X_op_symbol = NULL; - return TRUE; + return true; } /* Reset the line as if we had not done anything. */ input_line_pointer = start; - return FALSE; + return false; } /* Summary of register_name(). @@ -216,7 +216,7 @@ data_register_name (expressionS *expressionP) Input_line_pointer->(next non-blank) char after operand, or is in its original state. */ -static bfd_boolean +static bool address_register_name (expressionS *expressionP) { int reg_number; @@ -242,12 +242,12 @@ address_register_name (expressionS *expressionP) expressionP->X_add_symbol = NULL; expressionP->X_op_symbol = NULL; - return TRUE; + return true; } /* Reset the line as if we had not done anything. */ input_line_pointer = start; - return FALSE; + return false; } /* Summary of register_name(). @@ -260,7 +260,7 @@ address_register_name (expressionS *expressionP) Input_line_pointer->(next non-blank) char after operand, or is in its original state. */ -static bfd_boolean +static bool other_register_name (expressionS *expressionP) { int reg_number; @@ -286,12 +286,12 @@ other_register_name (expressionS *expressionP) expressionP->X_add_symbol = NULL; expressionP->X_op_symbol = NULL; - return TRUE; + return true; } /* Reset the line as if we had not done anything. */ input_line_pointer = start; - return FALSE; + return false; } void @@ -317,7 +317,7 @@ md_undefined_symbol (char *name ATTRIBUTE_UNUSED) const char * md_atof (int type, char *litp, int *sizep) { - return ieee_md_atof (type, litp, sizep, FALSE); + return ieee_md_atof (type, litp, sizep, false); } void |