Fix coding style comment, missed in last commit
authorTobias Burnus <tobias@codesourcery.com>
Wed, 2 Oct 2019 10:41:59 +0000 (10:41 +0000)
committerTobias Burnus <burnus@gcc.gnu.org>
Wed, 2 Oct 2019 10:41:59 +0000 (12:41 +0200)
        * trans-openmp.c (gfc_omp_is_optional_argument): Fix coding
        style.

From-SVN: r276446

gcc/fortran/ChangeLog
gcc/fortran/trans-openmp.c

index d8c891f04bc8e6baff353b6316609355c5857798..af0a0aca3436f8da249465a4ce0da1d789c01b8b 100644 (file)
@@ -1,3 +1,8 @@
+2019-10-02  Tobias Burnus  <tobias@codesourcery.com>
+
+       * trans-openmp.c (gfc_omp_is_optional_argument): Fix coding
+       style.
+
 2019-10-02  Kwok Cheung Yeung  <kcy@codesourcery.com>
 
        * f95-lang.c (LANG_HOOKS_OMP_IS_OPTIONAL_ARGUMENT): Define to
index 88ecc3311660a163c437350446922160d8aa2fce..f83bab4850ef30f1fff6613a279dfe2e8d984d9a 100644 (file)
@@ -52,7 +52,8 @@ int ompws_flags;
 bool
 gfc_omp_is_optional_argument (const_tree decl)
 {
-  return (TREE_CODE (decl) == PARM_DECL && DECL_LANG_SPECIFIC (decl)
+  return (TREE_CODE (decl) == PARM_DECL
+         && DECL_LANG_SPECIFIC (decl)
          && GFC_DECL_OPTIONAL_ARGUMENT (decl));
 }