| 43 | |
| 44 | #include <boost/array.hpp> |
| 45 | BOOST_NOINLINE void bar(int i) { |
| 46 | boost::array<int, 5> a = {{0, 0, 0, 0, 0}}; |
| 47 | if (i < 5) { |
| 48 | if (i >= 0) { |
| 49 | foo(a[i]); |
| 50 | } else { |
| 51 | oops(i); |
| 52 | } |
| 53 | } |
| 54 | std::exit(2); |
| 55 | } |
| 56 | |
| 57 | BOOST_NOINLINE void foo(int i) { |
| 58 | bar(--i); |