This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug tree-optimization/23588] CCP not fully propagating constants
- From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 26 Mar 2006 18:14:44 -0000
- Subject: [Bug tree-optimization/23588] CCP not fully propagating constants
- References: <bug-23588-1@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #9 from pinskia at gcc dot gnu dot org 2006-03-26 18:14 -------
Here is another testcase (I don't remember why I was looking into this now but
I was):
int f(int a)
{
int g = 0;
int t = a*g*a*a*a*a*a*a*a*a*a*a*a*a*a;
return t;
}
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23588