From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 8A2C4382CE75; Thu, 17 Nov 2022 17:01:24 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 8A2C4382CE75 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1668704484; bh=QTeJn+8h9D9aixzDirpRyAmaIXGhWLM/hYR4tVI0GHk=; h=From:To:Subject:Date:In-Reply-To:References:From; b=dIUsRq4nDtTRNRuobo7P5332gdPhyRsh3Saik47Vmd9d9Nnme+aaxivfii7hZsEc4 OetwQ2GjKpXzZR2NMc0gOc4IPw6PUALheytCxGkTqhBgMz6QOaM67km4+Cldx1dhGR xfFV7e5dvPxpD5hjQUOhnFnpSSom9m6HhZc/v1EQ= From: "dcb314 at hotmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/107734] valgrind error for gcc/testsuite/cc.target/i386/pr46051.c Date: Thu, 17 Nov 2022 17:01:24 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: dcb314 at hotmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: 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: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D107734 --- Comment #5 from David Binderman --- I have reduced one of the test cases downto this code: float val1f[][2], val2f[][2], chkf[][2]; foof_i; foof() { int j; foof_i =3D 0; for (; foof_i < 8; foof_i++) { float tmp =3D val1f[foof_i][j] * val2f[foof_i][j]; j =3D 0; for (; j < 2; j++) chkf[foof_i][j] =3D tmp; } }=