diff options
author | Jakub Jelinek <jakub@redhat.com> | 2008-01-03 11:28:30 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2008-01-03 11:28:30 +0100 |
commit | cac67c0835c7cf87ca6bb62b5fab0a781ac006b4 (patch) | |
tree | a4d9a31ad1849aee61b7768db215e00ac788037e /gcc/cgraphunit.c | |
parent | e0658eda3cfe217aa1cf8548642ef99490ef0b27 (diff) | |
download | gcc-cac67c0835c7cf87ca6bb62b5fab0a781ac006b4.zip gcc-cac67c0835c7cf87ca6bb62b5fab0a781ac006b4.tar.gz gcc-cac67c0835c7cf87ca6bb62b5fab0a781ac006b4.tar.bz2 |
re PR c++/34619 (ICE with "-fmudflap" and templates)
PR c++/34619
* cgraphunit.c (cgraph_build_static_cdtor): set_cfun back to NULL
before returning.
* testsuite/libmudflap.c++/pass61-frag.cxx: New test.
From-SVN: r131302
Diffstat (limited to 'gcc/cgraphunit.c')
-rw-r--r-- | gcc/cgraphunit.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c index 7215f1a..5d81f56 100644 --- a/gcc/cgraphunit.c +++ b/gcc/cgraphunit.c @@ -1,5 +1,6 @@ /* Callgraph based interprocedural optimizations. - Copyright (C) 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. + Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 + Free Software Foundation, Inc. Contributed by Jan Hubicka This file is part of GCC. @@ -1515,6 +1516,7 @@ cgraph_build_static_cdtor (char which, tree body, int priority) cgraph_add_new_function (decl, false); cgraph_mark_needed_node (cgraph_node (decl)); + set_cfun (NULL); } void |