From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id BB1A13857035; Tue, 30 Jun 2020 11:43:58 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org BB1A13857035 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1593517438; bh=5x6z2A54fqkloMyPHYG2ZHr/+EdjQSpIoEGOGWa4dVI=; h=From:To:Subject:Date:From; b=VujbjFUUi62Xxyjylsf+9cRxfyPlegyjnF8v/NqbwXLcdZq56ftpOZeSXIGcNCQ2x 6sSJSGM38QDVTF3XTwZsPxq/KMVKMRhyeGTtpzqKD9lsUY7mvObygyO2PNH9openlf wb/bxrULut7FwEjoTAiChsuIAFwBbkipWs9oliWQ= From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug gcov-profile/95996] New: Line containing "do" reported as "not run" Date: Tue, 30 Jun 2020 11:43:58 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: gcov-profile X-Bugzilla-Version: 10.1.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: DUPLICATE 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: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone resolution Message-ID: 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 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Jun 2020 11:43:58 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D95996 Bug ID: 95996 Summary: Line containing "do" reported as "not run" Product: gcc Version: 10.1.1 Status: RESOLVED Severity: normal Priority: P3 Component: gcov-profile Assignee: unassigned at gcc dot gnu.org Reporter: loximann at gmail dot com CC: marxin at gcc dot gnu.org Target Milestone: --- Resolution: DUPLICATE Status: RESOLVED The first do is marked as "#####", the second one is correctly marked as "-= ". -: 0:Source:coverage_test_2.cpp -: 0:Graph:coverage_test_2.gcno -: 0:Data:coverage_test_2.gcda -: 0:Runs:1 1: 1:int main() -: 2:{ 1: 3: int i =3D0; #####: 4: do -: 5: { 1: 6: ++i; 1: 7: } while(i<1); -: 8: do -: 9: { -: 10: } while(false); 1: 11:} --- Comment #1 from Richard Biener --- dup *** This bug has been marked as a duplicate of bug 95994 ***=