aboutsummaryrefslogtreecommitdiff
path: root/gcc/fortran/module.cc
diff options
context:
space:
mode:
authorUros Bizjak <ubizjak@gmail.com>2023-08-25 10:22:11 +0200
committerUros Bizjak <ubizjak@gmail.com>2023-08-25 15:28:36 +0200
commit54cc21eaf5f3eb7f7a508919a086f6c8bf5c4c17 (patch)
tree642e07345332f15b82fbcc83b56987979f2da39d /gcc/fortran/module.cc
parent3339220b9b0897c7e1cc887c5cb0a24ab4baf4ff (diff)
downloadgcc-54cc21eaf5f3eb7f7a508919a086f6c8bf5c4c17.zip
gcc-54cc21eaf5f3eb7f7a508919a086f6c8bf5c4c17.tar.gz
gcc-54cc21eaf5f3eb7f7a508919a086f6c8bf5c4c17.tar.bz2
fortran: Rename TRUE/FALSE to true/false in *.cc files
gcc/fortran/ChangeLog: * match.cc (gfc_match_equivalence): Rename TRUE/FALSE to true/false. * module.cc (check_access): Ditto. * primary.cc (match_real_constant): Ditto. * trans-array.cc (gfc_trans_allocate_array_storage): Ditto. (get_array_ctor_strlen): Ditto. * trans-common.cc (find_equivalence): Ditto. (add_equivalences): Ditto.
Diffstat (limited to 'gcc/fortran/module.cc')
-rw-r--r--gcc/fortran/module.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/fortran/module.cc b/gcc/fortran/module.cc
index 95fdda6..c07e9dc 100644
--- a/gcc/fortran/module.cc
+++ b/gcc/fortran/module.cc
@@ -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;