Add an UNSPEC_PROLOGUE_USE to prevent the link register from being considered dead.
[official-gcc.git] / libstdc++-v3 / testsuite / 23_containers / vector_resize.cc
blob3cc6c57ed4253fdc4ad4581757cb672ef39a78f2
1 // 1999-05-07
2 // bkoz
4 // Copyright (C) 1999, 2002 Free Software Foundation, Inc.
5 //
6 // This file is part of the GNU ISO C++ Library. This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 2, or (at your option)
10 // any later version.
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING. If not, write to the Free
19 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
20 // USA.
22 // 23.2.4.2 vector capacity
24 // XXX This test will not work for irix6 because of bug(s) in libc malloc
25 // XXX for very large allocations. However -lmalloc seems to work.
26 // See http://gcc.gnu.org/ml/libstdc++/2002-12/msg00131.html
27 // { dg-options "-lmalloc" { target mips*-*-irix6* } }
29 #include <vector>
30 #include <stdexcept>
31 #include <testsuite_hooks.h>
33 void test01()
35 bool test = true;
36 std::vector<int> v;
37 try
39 v.resize(v.max_size());
40 v[v.max_size() - 1] = 2002;
42 catch (const std::bad_alloc& error)
44 test = true;
46 catch (...)
48 test = false;
50 VERIFY( test );
53 int main()
55 test01();
56 return 0;