From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 2E7433944430; Thu, 10 Sep 2020 08:19:55 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 2E7433944430 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1599725995; bh=iz4B9XlrMnXdKDbXiJWJoVxuGHXyMX0ABAtpZrmQkuQ=; h=From:To:Subject:Date:In-Reply-To:References:From; b=OhXm4l+Kx8AylNuZjGXx6wgwcNAgxh2g1y62Qad4WVedFg8xqS+PKY8P5FunJRxfR Eg+Xrw/yQ7wDf6DbSgiR8MWBGe28A/DoY7TBetHFbWHEsmcXr1+Txiu58kx1V5OBSc 5MpbQ7ShI9pTrZ24tEBqy8p4xBOTJZp80X6pjAj8= From: "vries at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug debug/96997] [10/11 Regression] step over in gdb always stops in basic_string(const _CharT* __s, const _Alloc& __a = _Alloc()) Date: Thu, 10 Sep 2020 08:19:55 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: debug X-Bugzilla-Version: 10.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: vries at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 10.3 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 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: Thu, 10 Sep 2020 08:19:55 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D96997 --- Comment #3 from Tom de Vries --- -fdump-tree-all-lineno with gcc-9: ... main () { struct string D.36200; struct allocator D.36199; struct string D.36242; struct allocator D.36241; int D.39843; [test.c:7:27] std::allocator::allocator ([test.c:7:27] &D.36199); [test.c:7:19] try { try { [test.c:7:27] std::__cxx11::basic_string::basic_string ([test.c:7:27] &D.36200, [test.c:7:27] "str1", &D.36199); try { try { [test.c:7:40] std::operator<< , std::allocator > ([test.c:7:40] &cout, [test.c:7:27] &D.36200); } finally { [test.c:7:27] std::__cxx11::basic_string::~basic_st= ring ([test.c:7:27] &D.36200); } } finally { [test.c:7:27] D.36200 =3D {CLOBBER}; } } finally { [test.c:7:27] std::allocator::~allocator ([test.c:7:27] &D.36199); } } finally { [test.c:7:27] D.36199 =3D {CLOBBER}; } [test.c:8:27] std::allocator::allocator ([test.c:8:27] &D.36241); [test.c:8:19] try { try { [test.c:8:27] std::__cxx11::basic_string::basic_string ([test.c:8:27] &D.36242, [test.c:8:27] "str2", &D.36241); try { try { [test.c:8:40] std::operator<< , std::allocator > ([test.c:8:40] &cout, [test.c:8:27] &D.36242); } finally { [test.c:8:27] std::__cxx11::basic_string::~basic_st= ring ([test.c:8:27] &D.36242); } } finally { [test.c:8:27] D.36242 =3D {CLOBBER}; } } finally { [test.c:8:27] std::allocator::~allocator ([test.c:8:27] &D.36241); } } finally { [test.c:8:27] D.36241 =3D {CLOBBER}; } [test.c:9:16] D.39843 =3D 0; [test.c:9:16] return D.39843; [test.c:10:1] D.39843 =3D 0; [test.c:10:1] return D.39843; } ...=