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/23434] [4.1 regression] ICE: Segmentation fault compiling gsl1.5 at -O2


------- Additional Comments From belyshev at depni dot sinp dot msu dot ru  2005-08-17 10:16 -------
confirmed, reduced C tescase:
------------------------------------------------------------------------------
cblas_csyr2k (int N, void *A, int lda, float *B, int ldb, float *C, int k)
{
  int i, j;
  for (;; k ++)
    {
      for (i = 0; i < N; i ++)
	{
	  float t = ((float * ) A) [i];
	  for (j = i; j < N; j ++)
	    {
	      C [i + j] = B [ldb] * ((float *) A) [k];
	      C [lda] = 0 ;
	    }
	}
    }
}
------------------------------------------------------------------------------

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
           Keywords|                            |ice-on-valid-code
   Last reconfirmed|0000-00-00 00:00:00         |2005-08-17 10:16:54
               date|                            |
            Summary|ICE: Segmentation fault     |[4.1 regression] ICE:
                   |compiling gsl1.5 at -O2     |Segmentation fault compiling
                   |                            |gsl1.5 at -O2
   Target Milestone|---                         |4.1.0


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


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