[OpenACC] handle missing OMP_LIST_ clauses in fortran's parse tree debugger
authorCesar Philippidis <cesar@codesourcery.com>
Thu, 20 Sep 2018 18:42:57 +0000 (11:42 -0700)
committerCesar Philippidis <cesar@gcc.gnu.org>
Thu, 20 Sep 2018 18:42:57 +0000 (11:42 -0700)
gcc/fortran/
* dump-parse-tree.c (show_omp_clauses): Add missing omp list_types
and reorder the switch cases to match the enum in gfortran.h.

From-SVN: r264446

gcc/fortran/ChangeLog
gcc/fortran/dump-parse-tree.c

index 15f060b89ff14a93ff2e01010ebac5d88e311256..dd1e5b6eabcc5f7fa1d2af3a84ea3db23a7e5f29 100644 (file)
@@ -1,3 +1,8 @@
+2018-09-20  Cesar Philippidis  <cesar@codesourcery.com>
+
+       * dump-parse-tree.c (show_omp_clauses): Add missing omp list_types
+       and reorder the switch cases to match the enum in gfortran.h.
+
 2018-09-19  Paul Thomas  <pault@gcc.gnu.org>
 
        PR fortran/84109
index 2a28fa309869f58ec0d861a09f95337185338810..f1be5a67a26371dfad8b6458b07a92803771e275 100644 (file)
@@ -1384,21 +1384,26 @@ show_omp_clauses (gfc_omp_clauses *omp_clauses)
        const char *type = NULL;
        switch (list_type)
          {
-         case OMP_LIST_USE_DEVICE: type = "USE_DEVICE"; break;
-         case OMP_LIST_DEVICE_RESIDENT: type = "USE_DEVICE"; break;
-         case OMP_LIST_CACHE: type = ""; break;
          case OMP_LIST_PRIVATE: type = "PRIVATE"; break;
          case OMP_LIST_FIRSTPRIVATE: type = "FIRSTPRIVATE"; break;
          case OMP_LIST_LASTPRIVATE: type = "LASTPRIVATE"; break;
+         case OMP_LIST_COPYPRIVATE: type = "COPYPRIVATE"; break;
          case OMP_LIST_SHARED: type = "SHARED"; break;
          case OMP_LIST_COPYIN: type = "COPYIN"; break;
          case OMP_LIST_UNIFORM: type = "UNIFORM"; break;
          case OMP_LIST_ALIGNED: type = "ALIGNED"; break;
          case OMP_LIST_LINEAR: type = "LINEAR"; break;
+         case OMP_LIST_DEPEND: type = "DEPEND"; break;
+         case OMP_LIST_MAP: type = "MAP"; break;
+         case OMP_LIST_TO: type = "TO"; break;
+         case OMP_LIST_FROM: type = "FROM"; break;
          case OMP_LIST_REDUCTION: type = "REDUCTION"; break;
+         case OMP_LIST_DEVICE_RESIDENT: type = "DEVICE_RESIDENT"; break;
+         case OMP_LIST_LINK: type = "LINK"; break;
+         case OMP_LIST_USE_DEVICE: type = "USE_DEVICE"; break;
+         case OMP_LIST_CACHE: type = "CACHE"; break;
          case OMP_LIST_IS_DEVICE_PTR: type = "IS_DEVICE_PTR"; break;
          case OMP_LIST_USE_DEVICE_PTR: type = "USE_DEVICE_PTR"; break;
-         case OMP_LIST_DEPEND: type = "DEPEND"; break;
          default:
            gcc_unreachable ();
          }