From owner-freebsd-bugs Wed Oct 23 17:30: 5 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 393ED37B401 for ; Wed, 23 Oct 2002 17:30:04 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 765EE43E6A for ; Wed, 23 Oct 2002 17:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id g9O0U3x3068875 for ; Wed, 23 Oct 2002 17:30:03 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g9O0U3nj068874; Wed, 23 Oct 2002 17:30:03 -0700 (PDT) Date: Wed, 23 Oct 2002 17:30:03 -0700 (PDT) Message-Id: <200210240030.g9O0U3nj068874@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Steven G. Kargl" Subject: Re: gnu/44426: Internal compiler error Reply-To: "Steven G. Kargl" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR gnu/44426; it has been noted by GNATS. From: "Steven G. Kargl" 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