This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/9712] [3.4 regression] __PRETTY_FUNCTION__ in function try block causes ICE
- From: "pinskia at physics dot uc dot edu" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 2 Jun 2003 15:10:29 -0000
- Subject: [Bug c++/9712] [3.4 regression] __PRETTY_FUNCTION__ in function try block causes ICE
- References: <20030215144600.9712.vlukas@gmx.de>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=9712
------- Additional Comments From pinskia@physics.uc.edu 2003-06-02 15:10 -------
I cannot reproduce this on the mainline (20030525) with:
extern "C" void puts(const char*);
void func()
{
try { puts (__PRETTY_FUNCTION__ ); }
catch(...)
{ }
}
Has this been fixed?
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.