From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1498 invoked by alias); 11 Jun 2004 23:06:14 -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 1401 invoked by uid 48); 11 Jun 2004 23:06:11 -0000 Date: Fri, 11 Jun 2004 23:06:00 -0000 Message-ID: <20040611230611.1400.qmail@sourceware.org> From: "hjl at lucon dot org" To: gcc-bugs@gcc.gnu.org In-Reply-To: <20040525193213.15653.hjl@lucon.org> References: <20040525193213.15653.hjl@lucon.org> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug target/15653] [3.4 Regression]: Gcc 3.4 ICE on valid code X-Bugzilla-Reason: CC X-SW-Source: 2004-06/txt/msg01515.txt.bz2 List-Id: ------- Additional Comments From hjl at lucon dot org 2004-06-11 23:05 ------- The bug is not fixed. Please check all testcases in the bug report. The one failed is lock.c. I am enclosing here again: [hjl@gnu-4 itanium]$ cat lock.c extern void __free_pages_bulk (unsigned long); int free_pages_bulk(int count, unsigned int order) { unsigned long mask, flags; int ret = 0; mask = (~0UL) << order; asm volatile ("mov %0=psr" : "=r"(flags)); while (count--) { __free_pages_bulk(mask); } return ret; } [hjl@gnu-4 itanium]$ make lock.o /export/build/gnu/gcc-3.4/build-ia64-linux/gcc/xgcc -B/export/build/gnu/gcc- 3.4/build-ia64-linux/gcc/ -O2 -mtune=itanium -c -o lock.o lock.c lock.c: In function `free_pages_bulk': lock.c:15: internal compiler error: in bundling, at config/ia64/ia64.c:7359 Please submit a full bug report, with preprocessed source if appropriate. See for instructions. make: *** [lock.o] Error 1 -- What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |UNCONFIRMED Resolution|FIXED | http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15653