diff options
author | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-07 22:10:37 +0000 |
---|---|---|
committer | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-07 22:10:37 +0000 |
commit | 7d1895d3434f725cd4b0b85dca7e14c368d42bed (patch) | |
tree | af1cbd44fba3851b025f8df7b0c4bfa9e67fc748 /gcc/testsuite | |
parent | f971853078551543075b7bc4d3f62ee2767b2793 (diff) | |
download | gcc-7d1895d3434f725cd4b0b85dca7e14c368d42bed.tar.gz |
PR c++/12519
* c-semantics.c (genrtl_cleanup_stmt): Ignore the CLEANUP_DECL if
it isn't a decl.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72206 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite')
-rw-r--r-- | gcc/testsuite/g++.dg/opt/inline5.C | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.dg/opt/inline5.C b/gcc/testsuite/g++.dg/opt/inline5.C new file mode 100644 index 00000000000..dd61ee6bc01 --- /dev/null +++ b/gcc/testsuite/g++.dg/opt/inline5.C @@ -0,0 +1,20 @@ +// PR c++/12519 + +// { dg-do compile } +// { dg-options "-O" } + +struct A +{ + ~A(); +}; + +inline const A foo() +{ + A a; + return a; +} + +A bar() +{ + return foo(); +} |