From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id C5FBE3858C2D; Mon, 27 Nov 2023 23:00:23 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C5FBE3858C2D DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1701126023; bh=Sq8yEjjskP0mgA/pdbXDQ4iMOQOn0vEvDJqWHGweiK0=; h=From:To:Subject:Date:In-Reply-To:References:From; b=U6JyUYw04/PvKuD/nwz09esQ1NEx/S32bQZeRZfRxuEkn448vSfa92m0/Ysy2M0bb 14xWffZby51P4LszPhHc5j/COYv8YdHy8mX8Gis1YaIhCu9SW90vPgXO75sf6/S8V7 0GEE13LYVPHz/GKd3vJBKwMLk1E78oTMnO4s4Y3g= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug testsuite/112689] [14 Regression] gcc.dg/tree-prof/time-profiler-3.c fail Date: Mon, 27 Nov 2023 23:00:23 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: testsuite X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: testsuite-fail X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: pinskia at gcc dot gnu.org X-Bugzilla-Target-Milestone: 14.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=3D112689 --- Comment #6 from GCC Commits --- The trunk branch has been updated by Andrew Pinski : https://gcc.gnu.org/g:cd2519a6f857539262398f3ff63b53de173e2a88 commit r14-5892-gcd2519a6f857539262398f3ff63b53de173e2a88 Author: Andrew Pinski Date: Mon Nov 27 10:08:33 2023 -0800 Fix time-profiler-3.c after r14-5628-g53ba8d669550d3 This testcase started to fail after r14-5628-g53ba8d669550d3 because IPA-VRP can now start to figure out the functions return a constant value and there was nothing that profiling needed to profile any more. This disables IPA-VRP for this testcase to be able to profile again. Bootrapped/tested on x86_64-linux-gnu with no regressions. gcc/testsuite/ChangeLog: PR testsuite/112689 * gcc.dg/tree-prof/time-profiler-3.c: Add -fno-ipa-vrp.=