Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 23 Oct 2002 17:30:03 -0700 (PDT)
From:      "Steven G. Kargl" <kargl@troutmask.apl.washington.edu>
To:        freebsd-bugs@FreeBSD.org
Subject:   Re: gnu/44426: Internal compiler error
Message-ID:  <200210240030.g9O0U3nj068874@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR gnu/44426; it has been noted by GNATS.

From: "Steven G. Kargl" <kargl@troutmask.apl.washington.edu>
To: freebsd-gnats-submit@FreeBSD.org
Cc:  
Subject: Re: gnu/44426: Internal compiler error
Date: Wed, 23 Oct 2002 17:22:58 -0700 (PDT)

 Here's a shorter program that exhibits the ICE.
 
 void 
 ice(m, n, fjac)
         int     m;
         int     n;
         double  *fjac;
 {
         int i, j;
 
     for (j = 1; j <= n; j++) {
         for (i = 1; i <= m - 1; i += 2) {
             fjac[i] = (double) (i * j);
             fjac[i + j] = (double) ((i + 1) * j);
         }
     }
 }
 
 
 -- 
 Steve
 http://troutmask.apl.washington.edu/~kargl/

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200210240030.g9O0U3nj068874>