This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug tree-optimization/15982] [3.5 Regression] ICE in tree-ssa-pre due to GVN-PRE


------- Additional Comments From belyshev at lubercy dot com  2004-06-14 05:55 -------
c testcase:
-------------------------------------------------------------------------------
int ssbgst (int c, int k)
{
  int a, i, j;
  
  a = 0;
  i = 1;
  j = k;
  while (j)
    {
      a += (j + i) * (k + i + c) + (j + i + c);
      j = j - 1;
    }
  return a;
}
-------------------------------------------------------------------------------


-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|patch                       |
            Summary|ICE in tree-ssa-pre due to  |[3.5 Regression] ICE in
                   |GVN-PRE                     |tree-ssa-pre due to GVN-PRE


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15982


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]