From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id F3ABA3857707; Mon, 23 Oct 2023 07:23:26 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org F3ABA3857707 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1698045807; bh=XPSKmfUpWcJE6nhXGWO9mpgQhxKTFP2eBqFZ+QJLX84=; h=From:To:Subject:Date:In-Reply-To:References:From; b=GVpcki60+OgBAoSxZ+cpaZmoY8SVz+oT0YtnegcciVA9aUmeRNj9yUf8sRX7lgLGn 7CE2OmZ7aY9xTXA3676A+x9hZAiNOoAl5kJKfwu7ZEBiALBfWPBu/yn4nWuXiS3g6Z mqTB55QcgaKZtRzO6ULtBFIqBLu02s110AGk8US0= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/93262] [10 Regression] DSE memstar call trimming affecting -D_FORTIFY_SOURCE since r10-1985 Date: Mon, 23 Oct 2023 07:23:25 +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-Version: 10.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org X-Bugzilla-Target-Milestone: 10.0 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=3D93262 --- Comment #7 from CVS Commits --- The master branch has been updated by Florian Weimer : https://gcc.gnu.org/g:0e29c6f65523dad20068ba69cd03d8f6f82cab41 commit r14-4846-g0e29c6f65523dad20068ba69cd03d8f6f82cab41 Author: Florian Weimer Date: Mon Oct 23 09:23:05 2023 +0200 gcc.c-torture/execute/builtins/pr93262-chk.c: Remove return statement The main_test function returns void, so return with an expression is a constraint violation. The test case still fails with this change applied before the fix for PR 93262 in r14-4813. gcc/testsuite/ * gcc.c-torture/execute/builtins/pr93262-chk.c (main_test): Remove unnecessary return statement.=