re PR fortran/63331 (Fortran -fcompare-debug issues)
authorJakub Jelinek <jakub@redhat.com>
Tue, 23 Sep 2014 15:25:55 +0000 (17:25 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Tue, 23 Sep 2014 15:25:55 +0000 (17:25 +0200)
PR fortran/63331
* trans-types.c (gfc_get_array_descr_info): Build DEBUG_EXPR_DECL
instead of VAR_DECL for base_decl.

* gfortran.dg/pr63331.f90: New test.

From-SVN: r215516

gcc/fortran/ChangeLog
gcc/fortran/trans-types.c
gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/pr63331.f90 [new file with mode: 0644]

index 245a554d5211ff1af7f1da71ff0e5e32c0e26a5f..214e10112a418fdaa4c9602635fd6281c92e6f28 100644 (file)
@@ -1,3 +1,9 @@
+2014-09-23  Jakub Jelinek  <jakub@redhat.com>
+
+       PR fortran/63331
+       * trans-types.c (gfc_get_array_descr_info): Build DEBUG_EXPR_DECL
+       instead of VAR_DECL for base_decl.
+
 2014-09-21  Jan Hubicka  <hubicka@ucw.cz>
 
        * openmp.c (omp_context): Rename to ...
index 032147deafc4ad8e5a31638098550e6d52813f2e..6bfe14c740cdaf233d02fa989dbedeeb9a353347 100644 (file)
@@ -3041,8 +3041,10 @@ gfc_get_array_descr_info (const_tree type, struct array_descr_info *info)
   base_decl = GFC_TYPE_ARRAY_BASE_DECL (type, indirect);
   if (!base_decl)
     {
-      base_decl = build_decl (input_location, VAR_DECL, NULL_TREE,
-                             indirect ? build_pointer_type (ptype) : ptype);
+      base_decl = make_node (DEBUG_EXPR_DECL);
+      DECL_ARTIFICIAL (base_decl) = 1;
+      TREE_TYPE (base_decl) = indirect ? build_pointer_type (ptype) : ptype;
+      DECL_MODE (base_decl) = TYPE_MODE (TREE_TYPE (base_decl));
       GFC_TYPE_ARRAY_BASE_DECL (type, indirect) = base_decl;
     }
   info->base_decl = base_decl;
index c354a42d4753d76c84d7e2efbbcca7b8d82409a3..c7be6d9164605a441201fc05b103e2d0c74e6a7a 100644 (file)
@@ -1,3 +1,8 @@
+2014-09-23  Jakub Jelinek  <jakub@redhat.com>
+
+       PR fortran/63331
+       * gfortran.dg/pr63331.f90: New test.
+
 2014-09-24  Renlin Li  <renlin.li@arm.com>
 
        * gcc.dg/ira-shrinkwrap-prep-1.c: Enable aarch64.
diff --git a/gcc/testsuite/gfortran.dg/pr63331.f90 b/gcc/testsuite/gfortran.dg/pr63331.f90
new file mode 100644 (file)
index 0000000..1ea612b
--- /dev/null
@@ -0,0 +1,5 @@
+! PR fortran/63331
+! { dg-do compile }
+! { dg-options "-fcoarray=single -fcompare-debug" }
+
+include 'intent_out_7.f90'