c++: Testsuite adjustments for PR 90992.

It occurred to me that the NotNoexcept class is irrelevant to the issue I
was fixing, so let's remove it.
This commit is contained in:
Jason Merrill 2020-01-26 21:34:33 -05:00
parent 5035cd6624
commit 40bf3f1fd0
4 changed files with 3 additions and 16 deletions

View File

@ -35,7 +35,7 @@ void f2(T a) noexcept (noexcept (f (a)))
f(a);
}
struct A { A() { } }; // { dg-warning "does not throw" }
struct A { A() { } }; // { dg-message "does not throw" }
int main()
{

View File

@ -3,7 +3,7 @@
// { dg-options "-Wnoexcept" }
template <class T>
T f (T t) { return t; } // { dg-warning "does not throw" }
T f (T t) { return t; } // { dg-message "does not throw" }
#define SA(X) static_assert(X, #X)

View File

@ -7,7 +7,7 @@
// We expect a warning at the declaration of construct2, since Automatic2 is
// defined below; we don't expect one for construct1, because Automatic1 is
// defined in the fake system header.
// { dg-warning "noexcept-expression" "" { target *-*-* } 26 }
// { dg-warning "noexcept-expression" "" { target *-*-* } 15 }
class Automatic2 {
public:
@ -15,7 +15,6 @@ public:
private:
size_t Bla;
NotNoexcept Dummy;
};
union U

View File

@ -4,17 +4,6 @@
using size_t = decltype(sizeof(42));
inline void * operator new (size_t, void *p) noexcept { return p; }
class NotNoexcept {
public:
NotNoexcept() noexcept(false) {}
NotNoexcept(const NotNoexcept&) noexcept(false) {}
NotNoexcept(NotNoexcept &&) noexcept(false) {}
~NotNoexcept() noexcept(false) {}
NotNoexcept&operator=(const NotNoexcept&) noexcept(false) { return *this;}
NotNoexcept&operator=(NotNoexcept &&) noexcept(false) {return *this;}
};
template<typename _Up, typename... _Args>
void
construct1(_Up* __p, _Args... __args)
@ -33,5 +22,4 @@ public:
private:
size_t Bla;
NotNoexcept Dummy;
};