===================================================================
@@ -8358,8 +8358,8 @@ cp_build_modify_expr (location_t loc, tree lhs, en
if (newrhs == error_mark_node)
{
if (complain & tf_error)
- error (" in evaluation of %<%Q(%#T, %#T)%>", modifycode,
- TREE_TYPE (lhs), TREE_TYPE (rhs));
+ inform (loc, " in evaluation of %<%Q(%#T, %#T)%>",
+ modifycode, TREE_TYPE (lhs), TREE_TYPE (rhs));
return error_mark_node;
}
@@ -8594,7 +8594,7 @@ get_delta_difference_1 (tree from, tree to, bool c
if (!(complain & tf_error))
return error_mark_node;
- error (" in pointer to member function conversion");
+ inform (input_location, " in pointer to member function conversion");
return size_zero_node;
}
else if (binfo)
@@ -8655,7 +8655,7 @@ get_delta_difference (tree from, tree to,
return error_mark_node;
error_not_base_type (from, to);
- error (" in pointer to member conversion");
+ inform (input_location, " in pointer to member conversion");
result = size_zero_node;
}
else
@@ -8674,7 +8674,7 @@ get_delta_difference (tree from, tree to,
return error_mark_node;
error_not_base_type (from, to);
- error (" in pointer to member conversion");
+ inform (input_location, " in pointer to member conversion");
result = size_zero_node;
}
}
===================================================================
@@ -15,16 +15,20 @@ int B::*p1 = static_cast<int B::*>(&D::x);
int D::*p2 = static_cast<int D::*>(&B::x);
// Virtual base class.
-int V::*p3 = static_cast<int V::*>(&D::x); // { dg-error "" }
-int D::*p4 = static_cast<int D::*>(&V::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 "virtual base" }
// Inaccessible base class.
-int P::*p5 = static_cast<int P::*>(&D::x); // { dg-error "" }
-int D::*p6 = static_cast<int D::*>(&P::x); // { dg-error "" }
+int P::*p5 = static_cast<int P::*>(&D::x); // { dg-error "inaccessible base" }
+// { 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.
-int A::*p7 = static_cast<int A::*>(&D::x); // { dg-error "" }
-int D::*p8 = static_cast<int D::*>(&A::x); // { dg-error "" }
+int A::*p7 = static_cast<int A::*>(&D::x); // { dg-error "ambiguous base" }
+// { 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.
const int B::*p9 = static_cast<const int B::*>(&D::x);
@@ -35,5 +39,5 @@ int B::*p11 = static_cast<int B::*>(p10); // { dg-
int D::*p12 = static_cast<int D::*>(p9); // { dg-error "casts away qualifiers" }
// Attempts to change member type.
-float B::*p13 = static_cast<float B::*>(&D::x); // { dg-error "" }
-float D::*p14 = static_cast<float D::*>(&B::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 "invalid .static_cast." }
===================================================================
@@ -13,7 +13,7 @@ template<typename T> void f1()
template<typename T> void f2(float *f)
{
#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.
@@ -20,7 +20,7 @@ template<typename T> void f2(float *f)
template<typename T> void f3(float *f)
{
#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.