diff mbox series

[C++] Prefer error + inform in four typeck.c places

Message ID 9d98fc75-6c13-3530-ca02-c7317243061a@oracle.com
State New
Headers show
Series [C++] Prefer error + inform in four typeck.c places | expand

Commit Message

Paolo Carlini Oct. 24, 2019, 2:07 p.m. UTC
Hi,

some additional straightforward bits in typeck.c, which I noticed when I 
went through the cp_build_binary_op callers. Tested x86_64-linux.

Thanks, Paolo.

//////////////////////
/cp
2019-10-24  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-24  Paolo Carlini  <paolo.carlini@oracle.com>

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

Comments

Jason Merrill Oct. 30, 2019, 3:43 a.m. UTC | #1
On 10/24/19 10:07 AM, Paolo Carlini wrote:
> Hi,
> 
> some additional straightforward bits in typeck.c, which I noticed when I 
> went through the cp_build_binary_op callers. Tested x86_64-linux.
> 
> Thanks, Paolo.
> 
> //////////////////////
> 
OK.
diff mbox series

Patch

Index: cp/typeck.c
===================================================================
--- cp/typeck.c	(revision 277366)
+++ cp/typeck.c	(working copy)
@@ -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;
 	  }
       }
Index: testsuite/g++.dg/conversion/ptrmem2.C
===================================================================
--- testsuite/g++.dg/conversion/ptrmem2.C	(revision 277366)
+++ testsuite/g++.dg/conversion/ptrmem2.C	(working copy)
@@ -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." }
Index: testsuite/g++.dg/gomp/tpl-atomic-2.C
===================================================================
--- testsuite/g++.dg/gomp/tpl-atomic-2.C	(revision 277374)
+++ testsuite/g++.dg/gomp/tpl-atomic-2.C	(working copy)
@@ -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.