From 6888b7974b367c7f90705ffb4120ec1c7de90440 Mon Sep 17 00:00:00 2001 From: Harald Anlauf Date: Sat, 30 Oct 2021 20:09:10 +0200 Subject: [PATCH] Fortran: non-standard intrinsics SHORT and LONG have been removed 2021-10-30 Manfred Schwarb gcc/fortran/ChangeLog: * check.c (gfc_check_intconv): Change error message. gcc/testsuite/ChangeLog: * gfortran.dg/intrinsic_short-long.f90: New test. --- gcc/fortran/check.c | 2 +- gcc/testsuite/gfortran.dg/intrinsic_short-long.f90 | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 gcc/testsuite/gfortran.dg/intrinsic_short-long.f90 diff --git a/gcc/fortran/check.c b/gcc/fortran/check.c index cfaf9d2..6ea6e13 100644 --- a/gcc/fortran/check.c +++ b/gcc/fortran/check.c @@ -3240,7 +3240,7 @@ gfc_check_intconv (gfc_expr *x) if (strcmp (gfc_current_intrinsic, "short") == 0 || strcmp (gfc_current_intrinsic, "long") == 0) { - gfc_error ("%qs intrinsic subprogram at %L has been deprecated. " + gfc_error ("%qs intrinsic subprogram at %L has been removed. " "Use INT intrinsic subprogram.", gfc_current_intrinsic, &x->where); return false; diff --git a/gcc/testsuite/gfortran.dg/intrinsic_short-long.f90 b/gcc/testsuite/gfortran.dg/intrinsic_short-long.f90 new file mode 100644 index 0000000..3f3f3cc --- /dev/null +++ b/gcc/testsuite/gfortran.dg/intrinsic_short-long.f90 @@ -0,0 +1,11 @@ +! { dg-do compile } +! +! Checking for removal of SHORT and LONG intrinsics. +! + real,parameter :: a=3.1415927 + integer :: i + + i=SHORT(a) ! { dg-error "has been removed" } + i=LONG(a) ! { dg-error "has been removed" } + + end -- 2.7.4