diff options
author | Richard Henderson <rth@redhat.com> | 2009-07-16 10:08:50 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2009-07-16 10:08:50 -0700 |
commit | d19cb53b51428dd2ec0913545ab3b1f4d404b397 (patch) | |
tree | ed9987daad4c48c3979653d7e35eb8668d27e0a6 /gcc | |
parent | 271167f1135ec6fbaa711a2a72fff1353293ee06 (diff) | |
download | gcc-d19cb53b51428dd2ec0913545ab3b1f4d404b397.zip gcc-d19cb53b51428dd2ec0913545ab3b1f4d404b397.tar.gz gcc-d19cb53b51428dd2ec0913545ab3b1f4d404b397.tar.bz2 |
New test
From-SVN: r149715
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/g++.dg/opt/eh4.C | 59 |
2 files changed, 63 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 859a5e9..558a0b9 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2009-07-16 Richard Henderson <rth@redhat.com> + + * g++.dg/opt/eh4.C: New test. + 2009-07-16 Jakub Jelinek <jakub@redhat.com> * obj-c++.dg/defs.mm (abort): Make it extern "C". diff --git a/gcc/testsuite/g++.dg/opt/eh4.C b/gcc/testsuite/g++.dg/opt/eh4.C new file mode 100644 index 0000000..0a62ee2 --- /dev/null +++ b/gcc/testsuite/g++.dg/opt/eh4.C @@ -0,0 +1,59 @@ +// { dg-do run } +// { dg-options "-O3" } + +// Make sure that the call to terminate within F2 is not eliminated +// by incorrect MUST_NOT_THROW optimization. Note that we expect F1 +// to be inlined into F2 in order to expose this case. + +#include <cstdlib> +#include <exception> + +static volatile int zero = 0; + +// Note that we need F0 to not be marked nothrow, though we don't actually +// want a throw to happen at runtime here. The noinline tag is merely to +// make sure the assembly in F0 is not unnecessarily complex. +static void __attribute__((noinline)) f0() +{ + if (zero != 0) + throw 0; +} + +struct S1 +{ + S1() { } + ~S1() { f0(); } +}; + +static void f1() +{ + S1 s1; + throw 1; +} + +struct S2 +{ + S2() { } + ~S2() { f1(); } +}; + +static void __attribute__((noinline)) f2() +{ + S2 s2; + throw 2; +} + +static void pass() +{ + exit (0); +} + +int main() +{ + std::set_terminate (pass); + try { + f2(); + } catch (...) { + } + abort (); +} |