Commit 1dd88f8b by Steven G. Kargl

re PR fortran/38351 (Poor error message for rank mismatch in operator args)

2018-06-09  Steven G. Kargl  <kargl@gcc.gnu.org>
 
	PR fortran/38351
	* resolve.c (resolve_operator): Provide better error message for
	derived type entity used in an binary intrinsic numeric operator.

2018-06-09  Steven G. Kargl  <kargl@gcc.gnu.org>

	PR fortran/38351
	* gfortran.dg/pr38351.f90: New test.
	* gfortran.dg/typebound_operator_4.f03: Adjust for new error message.

From-SVN: r261363
parent 3cf89a7b
2018-06-09 Steven G. Kargl <kargl@gcc.gnu.org>
PR fortran/38351
* resolve.c (resolve_operator): Provide better error message for
derived type entity used in an binary intrinsic numeric operator.
2018-06-09 Steven G. Kargl <kargl@gcc.gnu.org>
PR fortran/85138
PR fortran/85996
......
......@@ -3878,7 +3878,13 @@ resolve_operator (gfc_expr *e)
break;
}
sprintf (msg,
if (op1->ts.type == BT_DERIVED || op2->ts.type == BT_DERIVED)
sprintf (msg,
_("Unexpected derived-type entities in binary intrinsic "
"numeric operator %%<%s%%> at %%L"),
gfc_op2string (e->value.op.op));
else
sprintf (msg,
_("Operands of binary numeric operator %%<%s%%> at %%L are %s/%s"),
gfc_op2string (e->value.op.op), gfc_typename (&op1->ts),
gfc_typename (&op2->ts));
......
2018-06-09 Steven G. Kargl <kargl@gcc.gnu.org>
PR fortran/38351
* gfortran.dg/pr38351.f90: New test.
* gfortran.dg/typebound_operator_4.f03: Adjust for new error message.
2018-06-09 Steven G. Kargl <kargl@gcc.gnu.org>
PR fortran/85138
PR fortran/85996
PR fortran/86051
......
! { dg-do compile }
module m1
type t1
integer :: i
end type t1
interface operator(+)
module procedure add
end interface
contains
type(t1) function add(a,b)
type(t1), intent(in) :: a,b
end function
end module m1
program foo
use m1
type(t1), dimension(2,2) :: a = t1(1), b = t1(2)
type(t1) :: c=t1(1), d=t1(2)
c = c + d
a = a + b ! { dg-error "Unexpected derived-type entities" }
end program foo
......@@ -84,6 +84,6 @@ PROGRAM main
TYPE(myint) :: x
x = 0 ! { dg-error "Can't convert" }
x = x + 42 ! { dg-error "Operands of" }
x = x + 42 ! { dg-error "binary intrinsic numeric operator" }
x = x .PLUS. 5 ! { dg-error "Unknown operator" }
END PROGRAM main
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment