* src/sh/ffi.c (ffi_prep_closure_loc): Don't ASSERT ABI test,
[official-gcc.git] / libstdc++-v3 / testsuite / 18_support / 50594.cc
blob047f4a732bf2bcebd6658a0086067dac6289a2b3
1 // { dg-options "-fwhole-program" }
3 // Copyright (C) 2011 Free Software Foundation
4 //
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
9 // any later version.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING3. If not see
18 // <http://www.gnu.org/licenses/>.
20 #include <new>
21 #include <string>
22 #include <cstdlib>
23 #include <testsuite_hooks.h>
25 bool user_new_called;
26 bool user_delete_called;
28 void* operator new(std::size_t n)
29 #ifndef __GXX_EXPERIMENTAL_CXX0X__
30 throw(std::bad_alloc)
31 #endif
33 user_new_called = true;
35 void* p = std::malloc(n);
37 if (!p)
38 throw std::bad_alloc();
40 return p;
43 void operator delete(void* p)
44 #ifdef __GXX_EXPERIMENTAL_CXX0X__
45 noexcept
46 #else
47 throw()
48 #endif
50 user_delete_called = true;
52 std::free(p);
55 // libstdc++/50594
56 void test01()
58 bool test __attribute__((unused)) = true;
61 std::string s = "Hello World.";
64 VERIFY( user_new_called );
65 VERIFY( user_delete_called );
68 int main()
70 test01();
71 return 0;