]> gcc.gnu.org Git - gcc.git/commitdiff
openmp.c (resolve_omp_clauses): Adjust error message to better reflect the actual...
authorDaniel Franke <dfranke@gcc.gnu.org>
Fri, 29 Jun 2007 16:58:56 +0000 (12:58 -0400)
committerDaniel Franke <dfranke@gcc.gnu.org>
Fri, 29 Jun 2007 16:58:56 +0000 (12:58 -0400)
gcc/fortran:
2007-06-29  Daniel Franke <franke.daniel@gmail.com>

        * openmp.c (resolve_omp_clauses): Adjust error message to
        better reflect the actual requirement.

gcc/testsuite:
2007-06-29  Daniel Franke  <franke.daniel@gmail.com>

        * gfortran.dg/gomp/reduction1.f90: Adjust error message.
        * gfortran.dg/gomp/allocatable_components_1.f90: Likewise.

From-SVN: r126115

gcc/fortran/openmp.c
gcc/testsuite/gfortran.dg/gomp/allocatable_components_1.f90
gcc/testsuite/gfortran.dg/gomp/reduction1.f90

index 54981ef3a6f721c51d94e1c8b97b1dc650a92974..9494052cd7249d5b10cfc4751de4bb3ba59f56d0 100644 (file)
@@ -850,7 +850,7 @@ resolve_omp_clauses (gfc_code *code)
                  case OMP_LIST_MULT:
                  case OMP_LIST_SUB:
                    if (!gfc_numeric_ts (&n->sym->ts))
-                     gfc_error ("%c REDUCTION variable '%s' at %L must be of intrinsic type, got %s",
+                     gfc_error ("%c REDUCTION variable '%s' at %L must be of numeric type, got %s",
                                 list == OMP_LIST_PLUS ? '+'
                                 : list == OMP_LIST_MULT ? '*' : '-',
                                 n->sym->name, &code->loc,
index 02fcb1b432d695847bf46fbb36707b376d62d4b3..225d0a2b5ed3677913400aad644a18780670d510 100644 (file)
@@ -49,7 +49,7 @@ CONTAINS
     TYPE(t) :: a(10)
     INTEGER :: i
 
-    !$omp parallel do reduction(+: a)   ! { dg-error "must be of intrinsic type" }
+    !$omp parallel do reduction(+: a)   ! { dg-error "must be of numeric type" }
     DO i = 1, SIZE(a)
     END DO
     !$omp end parallel do
index 6d516ad76ab75dfaa654f00991015be0129927f3..b6575063c36eb5198bab227fcf759bc0f9979073 100644 (file)
@@ -60,15 +60,15 @@ common /blk/ i1
 !$omp end parallel
 !$omp parallel reduction (*:ia1)       ! { dg-error "Assumed size" }
 !$omp end parallel
-!$omp parallel reduction (+:l1)                ! { dg-error "is LOGICAL" }
+!$omp parallel reduction (+:l1)                ! { dg-error "must be of numeric type, got LOGICAL" }
 !$omp end parallel
-!$omp parallel reduction (*:la1)       ! { dg-error "is LOGICAL" }
+!$omp parallel reduction (*:la1)       ! { dg-error "must be of numeric type, got LOGICAL" }
 !$omp end parallel
-!$omp parallel reduction (-:a1)                ! { dg-error "is CHARACTER" }
+!$omp parallel reduction (-:a1)                ! { dg-error "must be of numeric type, got CHARACTER" }
 !$omp end parallel
-!$omp parallel reduction (+:t1)                ! { dg-error "is TYPE" }
+!$omp parallel reduction (+:t1)                ! { dg-error "must be of numeric type, got TYPE" }
 !$omp end parallel
-!$omp parallel reduction (*:ta1)       ! { dg-error "is TYPE" }
+!$omp parallel reduction (*:ta1)       ! { dg-error "must be of numeric type, got TYPE" }
 !$omp end parallel
 !$omp parallel reduction (.and.:i3)    ! { dg-error "must be LOGICAL" }
 !$omp end parallel
This page took 0.084936 seconds and 5 git commands to generate.