PR c++/79592 adjust testcase
authorNathan Sidwell <nathan@acm.org>
Mon, 6 Jan 2020 15:22:02 +0000 (15:22 +0000)
committerNathan Sidwell <nathan@gcc.gnu.org>
Mon, 6 Jan 2020 15:22:02 +0000 (15:22 +0000)
https://gcc.gnu.org/ml/gcc-patches/2020-01/msg00127.html
* g++.dg/ubsan/vptr-4.C: Add expected error.

From-SVN: r279902

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/ubsan/vptr-4.C

index 878ea3704803f63c052a2440230d6655feafc0a0..425c0ce12cb1d6ceb3176b890a412ec5b0bb241f 100644 (file)
@@ -1,3 +1,8 @@
+2020-01-06  Nathan Sidwell  <nathan@acm.org>
+
+       PR c++/79592
+       * g++.dg/ubsan/vptr-4.C: Add expected error.
+
 2020-01-06  Richard Sandiford  <richard.sandiford@arm.com>
 
        * gcc.target/aarch64/sve/acle/general/cpy_1.c: New test.
index 764f599950162ce92f110d6241da273bba299c21..a21d3d60a3a2fb6ab889b8ed3eee2526e72fa12f 100644 (file)
@@ -35,7 +35,7 @@ struct W : V<U> {
   int b;
   int g() { return 0; }
   virtual int v() { return 1; }
-  constexpr const W<U> *foo() { return (const W<U> *) reinterpret_cast<const V<U> *> (this); }
+  constexpr const W<U> *foo() { return (const W<U> *) reinterpret_cast<const V<U> *> (this); } // { dg-error "is not a constant expression" }
 };
 
 constexpr W<int> w;