From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26051 invoked by alias); 3 Dec 2010 16:28:44 -0000 Received: (qmail 26038 invoked by uid 22791); 3 Dec 2010 16:28:42 -0000 X-SWARE-Spam-Status: No, hits=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,TW_OV X-Spam-Check-By: sourceware.org Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 03 Dec 2010 16:28:38 +0000 From: "howarth at nitro dot med.uc.edu" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/46768] [4.6 Regression] FAIL: gcc.target/i386/pr37434-[24].c X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: howarth at nitro dot med.uc.edu X-Bugzilla-Status: RESOLVED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 4.6.0 X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Date: Fri, 03 Dec 2010 16:28:00 -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 X-SW-Source: 2010-12/txt/msg00335.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46768 --- Comment #15 from Jack Howarth 2010-12-03 16:27:52 UTC --- I understand the issue now. Stock r167430 is fine but the addition of the approved patch to fix the md files and default i386 darwin to -mtune=core2 causes the failure in... FAIL: gcc.target/i386/sse2-init-v2di-2.c scan-assembler movq Apparently the darwin core2 patch will also need to correct the sse2-init-v2di-2.c testcase with... Index: gcc.target/i386/sse2-init-v2di-2.c =================================================================== --- gcc.target/i386/sse2-init-v2di-2.c (revision 167430) +++ gcc.target/i386/sse2-init-v2di-2.c (working copy) @@ -10,4 +10,4 @@ return _mm_cvtsi64_si128 (b); } -/* { dg-final { scan-assembler "movq" } } */ +/* { dg-final { scan-assembler "movd" } } */