re PR fortran/82743 (uncaught character truncation in derived type initialization)
authorThomas Koenig <tkoenig@gcc.gnu.org>
Tue, 1 Jan 2019 21:19:53 +0000 (21:19 +0000)
committerThomas Koenig <tkoenig@gcc.gnu.org>
Tue, 1 Jan 2019 21:19:53 +0000 (21:19 +0000)
2019-01-01  Thomas Koenig  <tkoenig@gcc.gnu.org>

PR fortran/82743
* primary.c (gfc_convert_to_structure_constructor): If a character
in a constructor is too long, add a warning with
-Wcharacter-truncation.

2019-01-01  Thomas Koenig  <tkoenig@gcc.gnu.org>

PR fortran/82743
* gfortran.dg/structure_constructor_16.f90: New test.

From-SVN: r267499

gcc/fortran/ChangeLog
gcc/fortran/primary.c
gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/structure_constructor_16.f90 [new file with mode: 0644]

index 3af5510..245772d 100644 (file)
@@ -1,3 +1,10 @@
+2019-01-01  Thomas Koenig  <tkoenig@gcc.gnu.org>
+
+       PR fortran/82743
+       * primary.c (gfc_convert_to_structure_constructor): If a character
+       in a constructor is too long, add a  warning with
+       -Wcharacter-truncation.
+
 2019-01-01  Jakub Jelinek  <jakub@redhat.com>
 
        Update copyright years.
index d7bd6d6..19f97d1 100644 (file)
@@ -3074,6 +3074,12 @@ gfc_convert_to_structure_constructor (gfc_expr *e, gfc_symbol *sym, gfc_expr **c
 
              actual->expr->value.character.length = c;
              actual->expr->value.character.string = dest;
+
+             if (warn_line_truncation && c < e)
+               gfc_warning_now (OPT_Wcharacter_truncation,
+                                "CHARACTER expression will be truncated "
+                                "in constructor (%ld/%ld) at %L", (long int) c,
+                                (long int) e, &actual->expr->where);
            }
        }
 
index a309a95..22534b9 100644 (file)
@@ -1,3 +1,8 @@
+2019-01-01  Thomas Koenig  <tkoenig@gcc.gnu.org>
+
+       PR fortran/82743
+       * gfortran.dg/structure_constructor_16.f90: New test.
+
 2019-01-01  Jan Hubicka  <hubicka@ucw.cz>
 
        * g++.dg/ipa/devirt-36.C: Add dg-do-compile.
diff --git a/gcc/testsuite/gfortran.dg/structure_constructor_16.f90 b/gcc/testsuite/gfortran.dg/structure_constructor_16.f90
new file mode 100644 (file)
index 0000000..93e8a3f
--- /dev/null
@@ -0,0 +1,14 @@
+! { dg-do compile }
+! { dg-additional-options "-Wcharacter-truncation" }
+! PR 82743 - warnings were missing on truncation of structure
+! constructors.
+! Original test case by Simon Klüpfel
+PROGRAM TEST
+    TYPE A
+        CHARACTER(LEN=1) :: C
+    END TYPE A
+    TYPE(A) :: A1
+    A1=A("123") ! { dg-warning "CHARACTER expression will be truncated" }
+    A1=A(C="123") ! { dg-warning "CHARACTER expression will be truncated" }
+    A1%C="123" ! { dg-warning "CHARACTER expression will be truncated" }
+END PROGRAM TEST