From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26739 invoked by alias); 24 Jan 2005 09:43:28 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 26688 invoked by uid 48); 24 Jan 2005 09:43:23 -0000 Date: Mon, 24 Jan 2005 09:43:00 -0000 Message-ID: <20050124094323.26687.qmail@sourceware.org> From: "rguenth at tat dot physik dot uni-tuebingen dot de" To: gcc-bugs@gcc.gnu.org In-Reply-To: <20050112160800.19401.rguenth@tat.physik.uni-tuebingen.de> References: <20050112160800.19401.rguenth@tat.physik.uni-tuebingen.de> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug tree-optimization/19401] Trivial loop not unrolled X-Bugzilla-Reason: CC X-SW-Source: 2005-01/txt/msg03482.txt.bz2 List-Id: ------- Additional Comments From rguenth at tat dot physik dot uni-tuebingen dot de 2005-01-24 09:43 ------- Another one - matrix multiplication: /* A [NxM], B [MxP] */ #define DOLOOP(N, M, P) \ void matmul ## N ## M ## P(double *res, const double *A, const double *B) \ { \ int i,j,k; \ for (k=0; k