]> gcc.gnu.org Git - gcc.git/commitdiff
re PR fortran/36371 (Wrong locus for errors in DATA statement)
authorPaul Thomas <pault@gcc.gnu.org>
Tue, 24 Jun 2008 21:44:28 +0000 (21:44 +0000)
committerPaul Thomas <pault@gcc.gnu.org>
Tue, 24 Jun 2008 21:44:28 +0000 (21:44 +0000)
2008-06-24  Paul Thomas  <pault@gcc.gnu.org>

PR fortran/34371
* expr.c (gfc_check_assign):  Change message and locus for
error when conform == 0.

2008-06-24  Paul Thomas  <pault@gcc.gnu.org>

PR fortran/36371
* gfortran.dg/data_array_5.f90: New test.

From-SVN: r137088

gcc/fortran/ChangeLog
gcc/fortran/expr.c
gcc/fortran/interface.c
gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/data_array_5.f90 [new file with mode: 0644]

index da1ac833bffb34cee682687779453618bbcdd66b..420218fa57c22bfe0409791563c7baa6b4800946 100644 (file)
@@ -1,3 +1,9 @@
+2008-06-24  Paul Thomas  <pault@gcc.gnu.org>
+
+       PR fortran/34371
+       * expr.c (gfc_check_assign):  Change message and locus for
+       error when conform == 0.
+
 2008-06-23  Jakub Jelinek  <jakub@redhat.com>
 
        PR fortran/36597
index ace09de434753caf3579e1ee17d1a99ed39bacb1..2f7030ed83357428ae0f920b3cf33f186abf724e 100644 (file)
@@ -2829,6 +2829,7 @@ gfc_check_assign (gfc_expr *lvalue, gfc_expr *rvalue, int conform)
   if (gfc_compare_types (&lvalue->ts, &rvalue->ts))
     return SUCCESS;
 
+  /* Only DATA Statements come here.  */
   if (!conform)
     {
       /* Numeric can be converted to any other numeric. And Hollerith can be
@@ -2840,9 +2841,9 @@ gfc_check_assign (gfc_expr *lvalue, gfc_expr *rvalue, int conform)
       if (lvalue->ts.type == BT_LOGICAL && rvalue->ts.type == BT_LOGICAL)
        return SUCCESS;
 
-      gfc_error ("Incompatible types in assignment at %L; attempted assignment "
-                "of %s to %s", &rvalue->where, gfc_typename (&rvalue->ts),
-                gfc_typename (&lvalue->ts));
+      gfc_error ("Incompatible types in DATA statement at %L; attempted "
+                "conversion of %s to %s", &lvalue->where,
+                gfc_typename (&rvalue->ts), gfc_typename (&lvalue->ts));
 
       return FAILURE;
     }
index 724d662aaa814f140bc3b8e224e9fd4e9fa3b82c..26b4591166a8f7115f5ff49062a597382ff56f06 100644 (file)
@@ -2379,7 +2379,7 @@ check_intents (gfc_formal_arglist *f, gfc_actual_arglist *a)
              return FAILURE;
            }
 
-         if (a->expr->symtree->n.sym->attr.pointer)
+         if (f->sym->attr.pointer)
            {
              gfc_error ("Procedure argument at %L is local to a PURE "
                         "procedure and has the POINTER attribute",
index 4c569c26edb655af7139d5770f66f4ce3c54d507..2c45e39f42eddc754f68f180ffb05891abac2159 100644 (file)
@@ -1,3 +1,8 @@
+2008-06-24  Paul Thomas  <pault@gcc.gnu.org>
+
+       PR fortran/36371
+       * gfortran.dg/data_array_5.f90: New test.
+
 2008-06-24  Eric Botcazou  <ebotcazou@adacore.com>
 
        * gnat.dg/warn5.adb: New test.
diff --git a/gcc/testsuite/gfortran.dg/data_array_5.f90 b/gcc/testsuite/gfortran.dg/data_array_5.f90
new file mode 100644 (file)
index 0000000..1d4e4e7
--- /dev/null
@@ -0,0 +1,14 @@
+! { dg-do compile }
+! Tests the fix for PR36371, in which the locus for the errors pointed to
+! the paramter declaration rather than the data statement.
+!
+! Contributed by Dominique d'Humieres <dominiq@lps.ens.fr>
+!
+program chkdata
+  character(len=3), parameter :: mychar(3) = [ "abc", "def", "ghi" ]
+  integer, parameter :: myint(3) = [1, 2, 3]
+  integer :: c(2)
+  character(4) :: i(2)
+  data c / mychar(1), mychar(3) / ! { dg-error "Incompatible types in DATA" }
+  data i / myint(3), myint(2) /   ! { dg-error "Incompatible types in DATA" }
+end program chkdata
This page took 0.117567 seconds and 5 git commands to generate.