This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug target/17345] [4.0 Regression] internal compiler error: in optimize_mode_switching, at lcm.c:1225
- From: "snyder at fnal dot gov" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 13 Sep 2004 13:52:06 -0000
- Subject: [Bug target/17345] [4.0 Regression] internal compiler error: in optimize_mode_switching, at lcm.c:1225
- References: <20040907105846.17345.wanderer@rsu.ru>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From snyder at fnal dot gov 2004-09-13 13:52 -------
Subject: Re: [3.5 Regression] internal compiler
error: in optimize_mode_switching, at lcm.c:1225
Here's one without loops or throws.
I ran into this independently; it looks like a common feature is a float->int conversion.
--------------------------------------------------
struct vector
{
~vector();
};
float bar();
void foo(int r);
void Draw ()
{
vector counts;
foo ((int)bar());
}
--------------------------------------------------
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17345