From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11710 invoked by alias); 17 Oct 2014 16:32:11 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 11690 invoked by uid 48); 17 Oct 2014 16:32:07 -0000 From: "bill.klees at teamquest dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/63545] ICE building GCC hash_table::find_slot_with_hash Date: Fri, 17 Oct 2014 16:32:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 4.9.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: bill.klees at teamquest dot com X-Bugzilla-Status: WAITING X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2014-10/txt/msg01392.txt.bz2 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63545 --- Comment #3 from Bill Klees --- Simplified Preprocessed source fails with same error ---------------------------------------------------- typedef int TItype __attribute__((mode(TI))); typedef int DItype __attribute__((mode(DI))); typedef unsigned int UDItype __attribute__((mode(DI))); struct DWstruct { DItype high, low; }; typedef union { struct DWstruct s; TItype ll; } DWunion; TItype __multi3(TItype u, TItype v) { const DWunion uu = { .ll = u }; const DWunion vv = { .ll = v }; DWunion w = { .ll = ({ DWunion __w; __asm__("xma.hu %0 = %2, %3, f0\n\txma.l %1 = %2, %3, f0" : "=&f" (__w.s.high) , "=f" (__w.s.low) : "f" (uu.s.low), "f" (vv.s.low)); __w.ll; }) }; w.s.high += ((UDItype)uu.s.low * (UDItype)vv.s.high + (UDItype)uu.s.high * (UDItype)vv.s.low); return w.ll; }