From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id B66F53857017; Tue, 30 Jun 2020 11:44:14 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B66F53857017 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1593517454; bh=sxYRaeaWYsRAYaqqRSsj1hEzyZ4m6Cx1l/HVPzVj+PE=; h=From:To:Subject:Date:From; b=f3tXnBAU7XfbViHe168I/Vg73EG1uxXcFKcfYBZon9cFNIH9cxfMAu2jvbCeZ/8xG UWjIkC4M3psP1v3z1Z8mJ0tlatlc2pXCwBcrfF6yjZbyxaUk5sumWefoI4eKCXocAf EmoeT4fRC5VizL5qbpPmsxr9tLS30Sc7bB6js9Rs= From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug gcov-profile/95997] New: Line containing "do" reported as "not run" Date: Tue, 30 Jun 2020 11:44:14 +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:44:14 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D95997 Bug ID: 95997 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 --- . *** This bug has been marked as a duplicate of bug 95994 ***=