Commit 0f928153 by Paolo Carlini Committed by Paolo Carlini

typeck.c (cp_build_modify_expr): Prefer error + inform to error + error in one place.

/cp
2019-10-30  Paolo Carlini  <paolo.carlini@oracle.com>

	* typeck.c (cp_build_modify_expr): Prefer error + inform to
	error + error in one place.
	(get_delta_difference_1): Likewise.
	(get_delta_difference): Likewise, in two places.

/testsuite
2019-10-30  Paolo Carlini  <paolo.carlini@oracle.com>

	* g++.dg/conversion/ptrmem2.C: Adjust for error + inform.
	* g++.dg/gomp/tpl-atomic-2.C: Likewise.

From-SVN: r277610
parent c425e66b
2019-10-30 Paolo Carlini <paolo.carlini@oracle.com>
* typeck.c (cp_build_modify_expr): Prefer error + inform to
error + error in one place.
(get_delta_difference_1): Likewise.
(get_delta_difference): Likewise, in two places.
2019-10-29 Paolo Carlini <paolo.carlini@oracle.com> 2019-10-29 Paolo Carlini <paolo.carlini@oracle.com>
* typeck.c (build_x_unary_op): Use the location_t argument in * typeck.c (build_x_unary_op): Use the location_t argument in
......
...@@ -8358,8 +8358,8 @@ cp_build_modify_expr (location_t loc, tree lhs, enum tree_code modifycode, ...@@ -8358,8 +8358,8 @@ cp_build_modify_expr (location_t loc, tree lhs, enum tree_code modifycode,
if (newrhs == error_mark_node) if (newrhs == error_mark_node)
{ {
if (complain & tf_error) if (complain & tf_error)
error (" in evaluation of %<%Q(%#T, %#T)%>", modifycode, inform (loc, " in evaluation of %<%Q(%#T, %#T)%>",
TREE_TYPE (lhs), TREE_TYPE (rhs)); modifycode, TREE_TYPE (lhs), TREE_TYPE (rhs));
return error_mark_node; return error_mark_node;
} }
...@@ -8594,7 +8594,7 @@ get_delta_difference_1 (tree from, tree to, bool c_cast_p, ...@@ -8594,7 +8594,7 @@ get_delta_difference_1 (tree from, tree to, bool c_cast_p,
if (!(complain & tf_error)) if (!(complain & tf_error))
return error_mark_node; return error_mark_node;
error (" in pointer to member function conversion"); inform (input_location, " in pointer to member function conversion");
return size_zero_node; return size_zero_node;
} }
else if (binfo) else if (binfo)
...@@ -8655,7 +8655,7 @@ get_delta_difference (tree from, tree to, ...@@ -8655,7 +8655,7 @@ get_delta_difference (tree from, tree to,
return error_mark_node; return error_mark_node;
error_not_base_type (from, to); error_not_base_type (from, to);
error (" in pointer to member conversion"); inform (input_location, " in pointer to member conversion");
result = size_zero_node; result = size_zero_node;
} }
else else
...@@ -8674,7 +8674,7 @@ get_delta_difference (tree from, tree to, ...@@ -8674,7 +8674,7 @@ get_delta_difference (tree from, tree to,
return error_mark_node; return error_mark_node;
error_not_base_type (from, to); error_not_base_type (from, to);
error (" in pointer to member conversion"); inform (input_location, " in pointer to member conversion");
result = size_zero_node; result = size_zero_node;
} }
} }
......
2019-10-30 Paolo Carlini <paolo.carlini@oracle.com>
* g++.dg/conversion/ptrmem2.C: Adjust for error + inform.
* g++.dg/gomp/tpl-atomic-2.C: Likewise.
2019-10-30 Martin Liska <mliska@suse.cz> 2019-10-30 Martin Liska <mliska@suse.cz>
PR lto/91393 PR lto/91393
......
...@@ -15,16 +15,20 @@ int B::*p1 = static_cast<int B::*>(&D::x); ...@@ -15,16 +15,20 @@ int B::*p1 = static_cast<int B::*>(&D::x);
int D::*p2 = static_cast<int D::*>(&B::x); int D::*p2 = static_cast<int D::*>(&B::x);
// Virtual base class. // Virtual base class.
int V::*p3 = static_cast<int V::*>(&D::x); // { dg-error "" } int V::*p3 = static_cast<int V::*>(&D::x); // { dg-error "virtual base" }
int D::*p4 = static_cast<int D::*>(&V::x); // { dg-error "" } int D::*p4 = static_cast<int D::*>(&V::x); // { dg-error "virtual base" }
// Inaccessible base class. // Inaccessible base class.
int P::*p5 = static_cast<int P::*>(&D::x); // { dg-error "" } int P::*p5 = static_cast<int P::*>(&D::x); // { dg-error "inaccessible base" }
int D::*p6 = static_cast<int D::*>(&P::x); // { dg-error "" } // { dg-message "pointer to member function" "" { target *-*-* } .-1 }
int D::*p6 = static_cast<int D::*>(&P::x); // { dg-error "inaccessible base" }
// { dg-message "pointer to member function" "" { target *-*-* } .-1 }
// Ambiguous base class. // Ambiguous base class.
int A::*p7 = static_cast<int A::*>(&D::x); // { dg-error "" } int A::*p7 = static_cast<int A::*>(&D::x); // { dg-error "ambiguous base" }
int D::*p8 = static_cast<int D::*>(&A::x); // { dg-error "" } // { dg-message "pointer to member function" "" { target *-*-* } .-1 }
int D::*p8 = static_cast<int D::*>(&A::x); // { dg-error "ambiguous base" }
// { dg-message "pointer to member function" "" { target *-*-* } .-1 }
// Valid conversions which increase cv-qualification. // Valid conversions which increase cv-qualification.
const int B::*p9 = static_cast<const int B::*>(&D::x); const int B::*p9 = static_cast<const int B::*>(&D::x);
...@@ -35,5 +39,5 @@ int B::*p11 = static_cast<int B::*>(p10); // { dg-error "casts away qualifiers" ...@@ -35,5 +39,5 @@ int B::*p11 = static_cast<int B::*>(p10); // { dg-error "casts away qualifiers"
int D::*p12 = static_cast<int D::*>(p9); // { dg-error "casts away qualifiers" } int D::*p12 = static_cast<int D::*>(p9); // { dg-error "casts away qualifiers" }
// Attempts to change member type. // Attempts to change member type.
float B::*p13 = static_cast<float B::*>(&D::x); // { dg-error "" } float B::*p13 = static_cast<float B::*>(&D::x); // { dg-error "invalid .static_cast." }
float D::*p14 = static_cast<float D::*>(&B::x); // { dg-error "" } float D::*p14 = static_cast<float D::*>(&B::x); // { dg-error "invalid .static_cast." }
...@@ -13,14 +13,14 @@ template<typename T> void f1() ...@@ -13,14 +13,14 @@ template<typename T> void f1()
template<typename T> void f2(float *f) template<typename T> void f2(float *f)
{ {
#pragma omp atomic // { dg-error "invalid" } #pragma omp atomic // { dg-error "invalid" }
*f |= 1; // { dg-error "evaluation" } *f |= 1; // { dg-message "evaluation" "" { target *-*-* } .-1 }
} }
// Here the rhs is dependent, but not type dependent. // Here the rhs is dependent, but not type dependent.
template<typename T> void f3(float *f) template<typename T> void f3(float *f)
{ {
#pragma omp atomic // { dg-error "invalid" } #pragma omp atomic // { dg-error "invalid" }
*f |= sizeof (T); // { dg-error "evaluation" } *f |= sizeof (T); // { dg-message "evaluation" "" { target *-*-* } .-1 }
} }
// And the converse, no error here because we're never fed a T. // And the converse, no error here because we're never fed a T.
......
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