diff --git a/gcc/fortran/check.c b/gcc/fortran/check.c index cfaf9d26bbc..6ea6e136d4f 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 00000000000..3f3f3cc3813 --- /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