@@ -5788,7 +5788,7 @@ gfc_match_equivalence (void)
goto syntax;
set = eq;
- common_flag = FALSE;
+ common_flag = false;
cnt = 0;
for (;;)
@@ -5829,7 +5829,7 @@ gfc_match_equivalence (void)
if (sym->attr.in_common)
{
- common_flag = TRUE;
+ common_flag = true;
common_head = sym->common_head;
}
@@ -5744,9 +5744,9 @@ check_access (gfc_access specific_access, gfc_access default_access)
return true;
if (specific_access == ACCESS_PUBLIC)
- return TRUE;
+ return true;
if (specific_access == ACCESS_PRIVATE)
- return FALSE;
+ return false;
if (flag_module_private)
return default_access == ACCESS_PUBLIC;
@@ -530,13 +530,13 @@ match_real_constant (gfc_expr **result, int signflag)
seen_dp = 0;
seen_digits = 0;
exp_char = ' ';
- negate = FALSE;
+ negate = false;
c = gfc_next_ascii_char ();
if (signflag && (c == '+' || c == '-'))
{
if (c == '-')
- negate = TRUE;
+ negate = true;
gfc_gobble_whitespace ();
c = gfc_next_ascii_char ();
@@ -1121,7 +1121,7 @@ gfc_trans_allocate_array_storage (stmtblock_t * pre, stmtblock_t * post,
{
/* A callee allocated array. */
gfc_conv_descriptor_data_set (pre, desc, null_pointer_node);
- onstack = FALSE;
+ onstack = false;
}
else
{
@@ -2481,7 +2481,7 @@ get_array_ctor_strlen (stmtblock_t *block, gfc_constructor_base base, tree * len
gfc_constructor *c;
bool is_const;
- is_const = TRUE;
+ is_const = true;
if (gfc_constructor_first (base) == NULL)
{
@@ -1048,7 +1048,7 @@ find_equivalence (segment_info *n)
gfc_equiv *e1, *e2, *eq;
bool found;
- found = FALSE;
+ found = false;
for (e1 = n->sym->ns->equiv; e1; e1 = e1->next)
{
@@ -1083,7 +1083,7 @@ find_equivalence (segment_info *n)
{
add_condition (n, eq, e2);
e2->used = 1;
- found = TRUE;
+ found = true;
}
}
}
@@ -1102,11 +1102,11 @@ static void
add_equivalences (bool *saw_equiv)
{
segment_info *f;
- bool more = TRUE;
+ bool more = true;
while (more)
{
- more = FALSE;
+ more = false;
for (f = current_segment; f; f = f->next)
{
if (!f->sym->equiv_built)