typeck.c (cp_build_modify_expr): Prefer error + inform to error + error in one place.
authorPaolo Carlini <paolo.carlini@oracle.com>
Wed, 30 Oct 2019 11:49:21 +0000 (11:49 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Wed, 30 Oct 2019 11:49:21 +0000 (11:49 +0000)
/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

gcc/cp/ChangeLog
gcc/cp/typeck.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/conversion/ptrmem2.C
gcc/testsuite/g++.dg/gomp/tpl-atomic-2.C

index bc2b48eea750920ff1ee92eccca62facc7587c1f..87a78f20b60695e20f4cc08838e36163fa80d852 100644 (file)
@@ -1,3 +1,10 @@
+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>
 
        * typeck.c (build_x_unary_op): Use the location_t argument in
index ad46d42d215b3e45ca83931a51a52ba70ad52fdd..477c6a3995520ee8948bf2d40ac328478638cbc4 100644 (file)
@@ -8358,8 +8358,8 @@ cp_build_modify_expr (location_t loc, tree lhs, enum tree_code modifycode,
          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_cast_p,
       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 65729622b8c62a302eb6f64021dbd627abf89231..bac4d0015508c6ccf6d54479d19d8aaae36fbb7e 100644 (file)
@@ -1,3 +1,8 @@
+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>
 
        PR lto/91393
index d46113db6c658f8d65a88608577046f187fce6c3..1dec36bfba8f8b6bb9795c9688de3dcc9addf059 100644 (file)
@@ -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-error "casts away qualifiers"
 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 627c6c6e2a9082bebb5f68151d830159585a85ac..1591831c5940f824ece3cc3fc1cb8fa0eb541af4 100644 (file)
@@ -13,14 +13,14 @@ 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.
 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.