diff options
author | Paolo Carlini <paolo.carlini@oracle.com> | 2012-10-14 13:40:55 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2012-10-14 13:40:55 +0000 |
commit | ca6729e2ed7b8a1308fdfdec0edcb6e9240f3258 (patch) | |
tree | f545cddc5f066d8b80d2a068977307ef0a1f4e64 /gcc | |
parent | 7159e6380c192ce45c8d1d8ca8bb9d5e68f02eaf (diff) | |
download | gcc-ca6729e2ed7b8a1308fdfdec0edcb6e9240f3258.zip gcc-ca6729e2ed7b8a1308fdfdec0edcb6e9240f3258.tar.gz gcc-ca6729e2ed7b8a1308fdfdec0edcb6e9240f3258.tar.bz2 |
re PR c++/52643 (Stack overflow ICE in cc1plus when templates, exceptions, and continue out of try used)
2012-10-14 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/52643
* g++.dg/opt/pr52643.C: New.
From-SVN: r192432
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/g++.dg/opt/pr52643.C | 64 |
2 files changed, 69 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 033c852..3a7dd93 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2012-10-14 Paolo Carlini <paolo.carlini@oracle.com> + + PR c++/52643 + * g++.dg/opt/pr52643.C: New. + 2012-10-12 Oleg Endo <olegendo@gcc.gnu.org> PR target/54602 diff --git a/gcc/testsuite/g++.dg/opt/pr52643.C b/gcc/testsuite/g++.dg/opt/pr52643.C new file mode 100644 index 0000000..271dd76 --- /dev/null +++ b/gcc/testsuite/g++.dg/opt/pr52643.C @@ -0,0 +1,64 @@ +// PR c++/52643 +// { dg-options "-O" } + +template<class T> class already_AddRefd {}; + +template<class T> +class ObjRef +{ +public: + ObjRef() {} + + ObjRef(const already_AddRefd<T> aar) {} + + ~ObjRef() + { + T* mPtr; + mPtr->release_ref(); + } + + operator T* () const + { + return __null; + } + + template<class U> + void operator= (const already_AddRefd<U>& newAssign) {} +}; + +class MyRetClass { +public: + void release_ref(); +}; + +class MyClass +{ + void appendChild(); + void getTripleOutOfByPredicate(); + already_AddRefd<MyRetClass> getNextTriple(); +}; + +void +MyClass::getTripleOutOfByPredicate() +{ + ObjRef<MyRetClass> t (getNextTriple()); + + if (t == __null) + throw MyRetClass(); +} + +void +MyClass::appendChild() +{ + while (1) + { + try + { + ObjRef<MyRetClass> t (getNextTriple()); + continue; + } + catch (MyRetClass) + { + } + } +} |