From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5281 invoked by alias); 21 Nov 2012 13:37:35 -0000 Received: (qmail 3436 invoked by uid 48); 21 Nov 2012 13:36:58 -0000 From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/54471] [4.8 Regression] FAIL: gcc.dg/sms-8.c execution test Date: Wed, 21 Nov 2012 13:37:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jakub at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 4.8.0 X-Bugzilla-Changed-Fields: Target Status Host Build 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 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: 2012-11/txt/msg02037.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54471 Jakub Jelinek changed: What |Removed |Added ---------------------------------------------------------------------------- Target|hppa*-*-* (32-bit) | Status|WAITING |NEW Host|hppa*-*-* (32-bit) | Build|hppa*-*-* (32-bit) | --- Comment #6 from Jakub Jelinek 2012-11-21 13:36:56 UTC --- Reproduced with extern void abort (void); __attribute__ ((noinline)) unsigned __int128 foo (__int128 ixi, unsigned ctr) { unsigned __int128 irslt = 1; __int128 ix = ixi; for (; ctr; ctr--) { irslt *= ix; ix *= ix; } if (irslt != 14348907) abort (); return irslt; } int main () { unsigned __int128 res; res = foo (3, 4); return 0; } on x86_64-linux at -O2, seems to be a VRP bug.